diff --git a/common_knowledge/Caching.md b/common_knowledge/Caching.md index e30472dbb1b..24a92a08553 100644 --- a/common_knowledge/Caching.md +++ b/common_knowledge/Caching.md @@ -40,8 +40,8 @@ _"There are only two hard things in Computer Science: cache invalidation and nam - Choosing a right TTL could be very important, as app data is highly transactional - **Caching Namespace:** - - Global - eg. /api/viewGlobalActivity - - User Specific - eg. /api/viewUserActivity or /api/status + - Global - eg. /api/internal/trpc/feed.GetGlobalActivity + - User Specific - eg. /api/internal/trpc/feed.GetUserActivity or /api/status - **Hybrid Request Handler** -> Fetch followed by tracking of user activity eg. get chain data & record current chain selected by user - these kind of request handler can only utilize sequelize result caching diff --git a/common_knowledge/Performance-Benchmarks.md b/common_knowledge/Performance-Benchmarks.md index 6af6d3ace8a..2034fa3378b 100644 --- a/common_knowledge/Performance-Benchmarks.md +++ b/common_knowledge/Performance-Benchmarks.md @@ -39,7 +39,7 @@ _See also full [Datadog](./Datadog.md) entry._ We've implemented two new performance dashboards to monitor and track improvements in latency and call volume over time. -These dashboards serve a key role in prioritizing improvements by highlighting high call volume and slow endpoints. They are instrumental in monitoring the effect of improvements over time, as shown by specific examples corresponding to PRs like `getAddressProfile` larger batches and performance enhancements in backend API calls such as `/viewUserActivity` and `/status`. Additionally, they can effectively detect abnormal spikes in latency and call volume through real-time metrics reported to Datadog. +These dashboards serve a key role in prioritizing improvements by highlighting high call volume and slow endpoints. They are instrumental in monitoring the effect of improvements over time, as shown by specific examples corresponding to PRs like `getAddressProfile` larger batches and performance enhancements in backend API calls such as `/feed.GetUserActivity` and `/status`. Additionally, they can effectively detect abnormal spikes in latency and call volume through real-time metrics reported to Datadog. ## Change Log diff --git a/libs/api-client/README.md b/libs/api-client/README.md index e9f0e09a2ad..e6f6b2e5759 100644 --- a/libs/api-client/README.md +++ b/libs/api-client/README.md @@ -1,3 +1,23 @@ # Common API -## TODO: write readme file +## Documentation + +[Fern API Reference](https://common.docs.buildwithfern.com) + +## CI/CD Instructions (Developers) + +- TODO + +## Manual Setup (Developers) + +### Generate a new API client + +- Start app with `pnpm start` so fern can refresh the lastest `openapi.spec` from `http://localhost:8080/api/v1/openapi.json` +- Run `pnpm generate-client` to generate: + - A new `fern/openapi/openapi.yml` file + - A client API in `/src`, formatted with our root `.prettierrc.json` config + +### Deploy a new API client + +- Update the version in `package.json` +- Run `pnpm publish` to publish the client diff --git a/libs/api-client/fern/docs.yml b/libs/api-client/fern/docs.yml index 37d2853fc5c..7e402ab6770 100644 --- a/libs/api-client/fern/docs.yml +++ b/libs/api-client/fern/docs.yml @@ -1,5 +1,5 @@ instances: - - url: https://Common.docs.buildwithfern.com + - url: https://common.docs.buildwithfern.com title: Common | Documentation navigation: - api: API Reference diff --git a/libs/api-client/fern/fern.config.json b/libs/api-client/fern/fern.config.json index be828cc2324..edadec42d77 100644 --- a/libs/api-client/fern/fern.config.json +++ b/libs/api-client/fern/fern.config.json @@ -1,4 +1,4 @@ { "organization": "Common", - "version": "0.43.5" + "version": "0.44.11" } diff --git a/libs/api-client/fern/openapi/openapi.yml b/libs/api-client/fern/openapi/openapi.yml index 7e46313690b..b5dda03259b 100644 --- a/libs/api-client/fern/openapi/openapi.yml +++ b/libs/api-client/fern/openapi/openapi.yml @@ -1,10 +1,243 @@ openapi: 3.0.3 info: title: Common API - version: 0.0.1 + version: 1.0.0 servers: - url: http://localhost:3000/api/v1 paths: + /GetUserActivity: + get: + operationId: getUserActivity + tags: + - User + security: + - apiKey: [] + parameters: + - in: header + name: address + required: false + schema: + type: string + - name: is_global + in: query + required: false + schema: + type: boolean + - name: thread_limit + in: query + required: false + schema: + type: number + - name: comment_limit + in: query + required: false + schema: + type: number + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: array + items: + type: object + properties: + community_id: + type: string + community_icon: + type: string + nullable: true + id: + type: number + user_id: + type: number + user_address: + type: string + profile_name: + type: string + nullable: true + profile_avatar: + type: string + nullable: true + body: + type: string + title: + type: string + kind: + type: string + stage: + type: string + number_of_comments: + type: number + created_at: + type: string + nullable: true + updated_at: + type: string + nullable: true + deleted_at: + type: string + nullable: true + locked_at: + type: string + nullable: true + archived_at: + type: string + nullable: true + marked_as_spam_at: + type: string + nullable: true + read_only: + type: boolean + has_poll: + type: boolean + nullable: true + discord_meta: + type: object + properties: + user: + type: object + properties: + id: + type: string + username: + type: string + required: + - id + - username + additionalProperties: false + channel_id: + type: string + message_id: + type: string + required: + - user + - channel_id + - message_id + additionalProperties: false + nullable: true + topic: + type: object + properties: + id: + type: number + name: + type: string + description: + type: string + required: + - id + - name + - description + additionalProperties: false + recent_comments: + type: array + items: + type: object + properties: + id: + type: number + address: + type: string + user_id: + type: number + nullable: true + profile_name: + type: string + nullable: true + profile_avatar: + type: string + nullable: true + text: + type: string + created_at: + type: string + updated_at: + type: string + nullable: true + deleted_at: + type: string + nullable: true + marked_as_spam_at: + type: string + nullable: true + discord_meta: + type: object + properties: + user: + type: object + properties: + id: + type: string + username: + type: string + required: + - id + - username + additionalProperties: false + channel_id: + type: string + message_id: + type: string + required: + - user + - channel_id + - message_id + additionalProperties: false + nullable: true + required: + - id + - address + - text + - created_at + additionalProperties: false + nullable: true + required: + - community_id + - id + - user_id + - user_address + - body + - title + - kind + - stage + - number_of_comments + - read_only + - topic + additionalProperties: false + default: + $ref: '#/components/responses/error' + /GetNewContent: + get: + operationId: getNewContent + tags: + - User + security: + - apiKey: [] + parameters: + - in: header + name: address + required: false + schema: + type: string + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + joinedCommunityIdsWithNewContent: + type: array + items: + type: string + required: + - joinedCommunityIdsWithNewContent + additionalProperties: false + default: + $ref: '#/components/responses/error' /GetCommunities: get: operationId: getCommunities @@ -2982,8 +3215,6 @@ paths: maximum: 2147483647 text: type: string - plaintext: - type: string parent_id: type: string nullable: true @@ -3292,9 +3523,6 @@ paths: body: type: string nullable: true - plaintext: - type: string - nullable: true url: type: string nullable: true @@ -4300,12 +4528,7 @@ paths: - address_id - title - kind - - stage - community_id - - view_count - - reaction_count - - reaction_weights_sum - - comment_count - search additionalProperties: false nullable: true @@ -4611,7 +4834,6 @@ paths: - thread_id - address_id - text - - plaintext - reaction_count - search additionalProperties: false @@ -10763,9 +10985,6 @@ paths: body: type: string nullable: true - plaintext: - type: string - nullable: true url: type: string nullable: true @@ -11769,12 +11988,7 @@ paths: - address_id - title - kind - - stage - community_id - - view_count - - reaction_count - - reaction_weights_sum - - comment_count - search additionalProperties: false default: @@ -11872,9 +12086,6 @@ paths: body: type: string nullable: true - plaintext: - type: string - nullable: true url: type: string nullable: true @@ -12878,12 +13089,7 @@ paths: - address_id - title - kind - - stage - community_id - - view_count - - reaction_count - - reaction_weights_sum - - comment_count - search additionalProperties: false default: @@ -13032,8 +13238,6 @@ paths: maximum: 2147483647 text: type: string - plaintext: - type: string parent_id: type: string nullable: true @@ -13342,9 +13546,6 @@ paths: body: type: string nullable: true - plaintext: - type: string - nullable: true url: type: string nullable: true @@ -14348,12 +14549,7 @@ paths: - address_id - title - kind - - stage - community_id - - view_count - - reaction_count - - reaction_weights_sum - - comment_count - search additionalProperties: false nullable: true @@ -14661,7 +14857,6 @@ paths: - thread_id - address_id - text - - plaintext - reaction_count - search - community_id @@ -14721,8 +14916,6 @@ paths: maximum: 2147483647 text: type: string - plaintext: - type: string parent_id: type: string nullable: true @@ -15031,9 +15224,6 @@ paths: body: type: string nullable: true - plaintext: - type: string - nullable: true url: type: string nullable: true @@ -16037,12 +16227,7 @@ paths: - address_id - title - kind - - stage - community_id - - view_count - - reaction_count - - reaction_weights_sum - - comment_count - search additionalProperties: false nullable: true @@ -16350,7 +16535,6 @@ paths: - thread_id - address_id - text - - plaintext - reaction_count - search - community_id diff --git a/libs/api-client/package.json b/libs/api-client/package.json index 8e82c6eeec5..1b217f57e1a 100644 --- a/libs/api-client/package.json +++ b/libs/api-client/package.json @@ -1,6 +1,6 @@ { "name": "@commonxyz/api-client", - "version": "0.0.1", + "version": "1.0.0", "type": "module", "description": "Common Client Proxy", "repository": { @@ -15,21 +15,20 @@ "access": "public" }, "files": [ - "build" + "src" ], "exports": { ".": { - "default": "./build/index.js", - "devmode": "./src/index.ts" + "default": "./src/index.js" } }, "scripts": { "build": "echo Generated SDK is prebuilt", - "clean": "rm -rf build && rm -rf coverage", + "clean": "echo Generated SDK is prebuilt", + "check-types": "echo Generated SDK is prebuilt", "publish": "npm publish", - "run-test": "tsx ./test/index.ts", - "check-types": "tsc --noEmit", - "generate-client": "chmod u+x scripts/fern-init.sh && ./scripts/fern-init.sh && fern generate" + "format": "npx prettier --write 'src/**/*.{js,d.ts}'", + "generate-client": "chmod u+x scripts/fern-init.sh && ./scripts/fern-init.sh && fern generate && pnpm format" }, "keywords": [ "commonwealth", @@ -39,12 +38,7 @@ "author": "common.xyz", "license": "MIT", "dependencies": { - "moment": "^2.23.0", - "qs": "^6.13.0", + "node-fetch": "^3.3.2", "url-join": "^5.0.0" - }, - "devDependencies": { - "@types/moment": "^2.13.0", - "tsx": "^4.7.2" } } diff --git a/libs/api-client/src/Client.d.ts b/libs/api-client/src/Client.d.ts index 7e2497437fd..d7b4ba3b811 100644 --- a/libs/api-client/src/Client.d.ts +++ b/libs/api-client/src/Client.d.ts @@ -5,9 +5,9 @@ import { Comment } from './api/resources/comment/client/Client'; import { Community } from './api/resources/community/client/Client'; import { Reaction } from './api/resources/reaction/client/Client'; import { Thread } from './api/resources/thread/client/Client'; +import { User } from './api/resources/user/client/Client'; import * as core from './core'; import * as environments from './environments'; - export declare namespace CommonApiClient { interface Options { environment?: core.Supplier; @@ -15,7 +15,6 @@ export declare namespace CommonApiClient { /** Override the address header */ address?: core.Supplier; } - interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; @@ -27,21 +26,17 @@ export declare namespace CommonApiClient { address?: string | undefined; } } - export declare class CommonApiClient { protected readonly _options: CommonApiClient.Options; - constructor(_options: CommonApiClient.Options); - + protected _user: User | undefined; + get user(): User; protected _community: Community | undefined; get community(): Community; - protected _comment: Comment | undefined; get comment(): Comment; - protected _thread: Thread | undefined; get thread(): Thread; - protected _reaction: Reaction | undefined; get reaction(): Reaction; } diff --git a/libs/api-client/src/Client.js b/libs/api-client/src/Client.js index f3de1789a2e..ec485ec57aa 100644 --- a/libs/api-client/src/Client.js +++ b/libs/api-client/src/Client.js @@ -5,33 +5,35 @@ import { Comment } from './api/resources/comment/client/Client'; import { Community } from './api/resources/community/client/Client'; import { Reaction } from './api/resources/reaction/client/Client'; import { Thread } from './api/resources/thread/client/Client'; - +import { User } from './api/resources/user/client/Client'; export class CommonApiClient { constructor(_options) { this._options = _options; } - + get user() { + var _a; + return (_a = this._user) !== null && _a !== void 0 + ? _a + : (this._user = new User(this._options)); + } get community() { var _a; return (_a = this._community) !== null && _a !== void 0 ? _a : (this._community = new Community(this._options)); } - get comment() { var _a; return (_a = this._comment) !== null && _a !== void 0 ? _a : (this._comment = new Comment(this._options)); } - get thread() { var _a; return (_a = this._thread) !== null && _a !== void 0 ? _a : (this._thread = new Thread(this._options)); } - get reaction() { var _a; return (_a = this._reaction) !== null && _a !== void 0 diff --git a/libs/api-client/src/api/resources/comment/client/Client.d.ts b/libs/api-client/src/api/resources/comment/client/Client.d.ts index 0d7344ff517..32d17097eac 100644 --- a/libs/api-client/src/api/resources/comment/client/Client.d.ts +++ b/libs/api-client/src/api/resources/comment/client/Client.d.ts @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as CommonApi from '../../../index'; - export declare namespace Comment { interface Options { environment?: core.Supplier; @@ -12,7 +11,6 @@ export declare namespace Comment { /** Override the address header */ address?: core.Supplier; } - interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; @@ -24,12 +22,9 @@ export declare namespace Comment { address?: string | undefined; } } - export declare class Comment { protected readonly _options: Comment.Options; - constructor(_options: Comment.Options); - /** * @param {CommonApi.GetCommentsRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -43,7 +38,6 @@ export declare class Comment { request: CommonApi.GetCommentsRequest, requestOptions?: Comment.RequestOptions, ): Promise; - /** * @param {CommonApi.CreateCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -58,7 +52,6 @@ export declare class Comment { request: CommonApi.CreateCommentRequest, requestOptions?: Comment.RequestOptions, ): Promise; - /** * @param {CommonApi.UpdateCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -73,7 +66,6 @@ export declare class Comment { request: CommonApi.UpdateCommentRequest, requestOptions?: Comment.RequestOptions, ): Promise; - /** * @param {CommonApi.DeleteCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -87,7 +79,6 @@ export declare class Comment { request: CommonApi.DeleteCommentRequest, requestOptions?: Comment.RequestOptions, ): Promise; - protected _getCustomAuthorizationHeaders(): Promise<{ 'x-api-key': string; }>; diff --git a/libs/api-client/src/api/resources/comment/client/Client.js b/libs/api-client/src/api/resources/comment/client/Client.js index 80ac2b981fe..b10928b00bc 100644 --- a/libs/api-client/src/api/resources/comment/client/Client.js +++ b/libs/api-client/src/api/resources/comment/client/Client.js @@ -11,7 +11,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -20,7 +19,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -28,13 +26,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -43,12 +39,10 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as errors from '../../../../errors/index'; import * as serializers from '../../../../serialization/index'; - export class Comment { constructor(_options) { this._options = _options; } - /** * @param {CommonApi.GetCommentsRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -162,7 +156,6 @@ export class Comment { } }); } - /** * @param {CommonApi.CreateCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -246,7 +239,6 @@ export class Comment { } }); } - /** * @param {CommonApi.UpdateCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -330,7 +322,6 @@ export class Comment { } }); } - /** * @param {CommonApi.DeleteCommentRequest} request * @param {Comment.RequestOptions} requestOptions - Request-specific configuration. @@ -413,7 +404,6 @@ export class Comment { } }); } - _getCustomAuthorizationHeaders() { return __awaiter(this, void 0, void 0, function* () { const apiKeyValue = yield core.Supplier.get(this._options.apiKey); diff --git a/libs/api-client/src/api/resources/comment/client/requests/CreateCommentRequest.d.ts b/libs/api-client/src/api/resources/comment/client/requests/CreateCommentRequest.d.ts index 3e05355a801..45ebe8a7e96 100644 --- a/libs/api-client/src/api/resources/comment/client/requests/CreateCommentRequest.d.ts +++ b/libs/api-client/src/api/resources/comment/client/requests/CreateCommentRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/comment/client/requests/GetCommentsRequest.d.ts b/libs/api-client/src/api/resources/comment/client/requests/GetCommentsRequest.d.ts index b62b135a883..d44b96891a8 100644 --- a/libs/api-client/src/api/resources/comment/client/requests/GetCommentsRequest.d.ts +++ b/libs/api-client/src/api/resources/comment/client/requests/GetCommentsRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts index 42134d10517..636afbbfbc1 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentRequestDiscordMeta { user: CommonApi.CreateCommentRequestDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponse.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponse.d.ts index 88669f66275..be868009211 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponse.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponse.d.ts @@ -2,13 +2,11 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponse { id?: number; threadId: number; addressId: number; text: string; - plaintext: string; parentId?: string; contentUrl?: string; canvasSignedData?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddress.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddress.d.ts index c539489e182..4f375366c33 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUser.d.ts index 5072f9a759d..8a731ae6b82 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..c2eefc9fe5e --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts index aeca333ac4f..234ff14fd56 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts index f248a784f84..a0dbe2c0ca9 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseDiscordMeta { user: CommonApi.CreateCommentResponseDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReaction.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReaction.d.ts index 62c672f92f5..09529083623 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReaction.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReaction.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseReaction { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddress.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddress.d.ts index 6d4f9c8f1bc..500eb9aa8cc 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseReactionAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts index f418d9b50f2..0a4eb26239f 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseReactionAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..498f30b7a8a --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentResponseReactionAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts index 8b7f62398f8..882b4be1ecc 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseReactionAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThread.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThread.d.ts index 080bc91e8f5..faf304a4490 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThread.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThread.d.ts @@ -2,20 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThread { id?: number; addressId: number; title: string; kind: string; - stage: string; + stage?: string; body?: string; - plaintext?: string; url?: string; topicId?: number; pinned?: boolean; communityId: string; - viewCount: number; + viewCount?: number; links?: CommonApi.CreateCommentResponseThreadLinksItem[]; contentUrl?: string; readOnly?: boolean; @@ -31,9 +29,9 @@ export interface CreateCommentResponseThread { archivedAt?: Date; lockedAt?: Date; discordMeta?: CommonApi.CreateCommentResponseThreadDiscordMeta; - reactionCount: number; - reactionWeightsSum: number; - commentCount: number; + reactionCount?: number; + reactionWeightsSum?: number; + commentCount?: number; activityRankDate?: Date; createdBy?: string; profileName?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddress.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddress.d.ts index 966bc190a83..74160e6234d 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts index 8cac2cb6ab4..40013564c51 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..429825ccc26 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentResponseThreadAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts index 3e2667211cf..df7b36b3cf8 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts index fe44bb1ed0a..ae53f306a2a 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadCollaboratorsItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts index 861870bbab0..da9d414a3a8 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadCollaboratorsItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..e14622f724a --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentResponseThreadCollaboratorsItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts index 0d44faf7ee4..d420fe7c443 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadCollaboratorsItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts index 2c662ba38ad..fff8f8261b4 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadDiscordMeta { user: CommonApi.CreateCommentResponseThreadDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts index ad1a7f8aae2..49ed78fe746 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadLinksItem { source: CommonApi.CreateCommentResponseThreadLinksItemSource; identifier: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts index 7d7c4310329..6117ff36412 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadReactionsItem { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts index 5750e95bc80..e5534149383 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadReactionsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts index fb14a8537a7..80b221e3a42 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadReactionsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..6085b8a1af4 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentResponseThreadReactionsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts index 16e0b9c18dc..37305a68891 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadReactionsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadTopic.d.ts b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadTopic.d.ts index f8a8be805da..e92d3563938 100644 --- a/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadTopic.d.ts +++ b/libs/api-client/src/api/resources/comment/types/CreateCommentResponseThreadTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentResponseThreadTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponse.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponse.d.ts index ad5c22d1246..5804ce36a63 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponse.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponse { limit: number; page: number; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItem.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItem.d.ts index c17cceef19c..3658a668163 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItem.d.ts @@ -2,13 +2,11 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItem { id?: number; threadId: number; addressId: number; text: string; - plaintext: string; parentId?: string; contentUrl?: string; canvasSignedData?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts index 04123c9f33d..73d10cc5e13 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts index 6b1ee7b8b5d..3a7452a9bf1 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..7dc3fb9890e --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommentsResponseResultsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts index 03c6adab664..12634ef8c0e 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts index d0f8c9c4732..60b9b071b48 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemDiscordMeta { user: CommonApi.GetCommentsResponseResultsItemDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts index 719ef038696..38856424597 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemReaction { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts index e639747af6f..546bdec8588 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemReactionAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts index 0df73917b48..8879d5b3441 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemReactionAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..18f6aa753f6 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommentsResponseResultsItemReactionAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts index 04c7dd76d1a..32c43916dbd 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemReactionAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts index 6654f640013..3d1cf6d346f 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts @@ -2,20 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThread { id?: number; addressId: number; title: string; kind: string; - stage: string; + stage?: string; body?: string; - plaintext?: string; url?: string; topicId?: number; pinned?: boolean; communityId: string; - viewCount: number; + viewCount?: number; links?: CommonApi.GetCommentsResponseResultsItemThreadLinksItem[]; contentUrl?: string; readOnly?: boolean; @@ -31,9 +29,9 @@ export interface GetCommentsResponseResultsItemThread { archivedAt?: Date; lockedAt?: Date; discordMeta?: CommonApi.GetCommentsResponseResultsItemThreadDiscordMeta; - reactionCount: number; - reactionWeightsSum: number; - commentCount: number; + reactionCount?: number; + reactionWeightsSum?: number; + commentCount?: number; activityRankDate?: Date; createdBy?: string; profileName?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts index ab600803e5e..6a32e966042 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts index e8fddec00b9..b028fdcd630 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..c0a38bca728 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommentsResponseResultsItemThreadAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts index 3559d47d553..94cfba33fbf 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts index dbe77b57db6..7c8c944e6c8 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadCollaboratorsItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts index 56ebd07ef90..561b43e884b 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadCollaboratorsItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..0fa2bc07fb4 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts index 7a472ecfa1b..6824b62ca02 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts index 9a041a25c16..d3ea0ab690d 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadDiscordMeta { user: CommonApi.GetCommentsResponseResultsItemThreadDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts index b0c8435f852..af95dcdace1 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadLinksItem { source: CommonApi.GetCommentsResponseResultsItemThreadLinksItemSource; identifier: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts index 09e5abe68c5..da07a08efe6 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadReactionsItem { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts index a4cba4ccec1..1ba8495c42d 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadReactionsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts index 147e7f88434..7bfab3e07c8 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadReactionsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..1793c4f45a1 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts index a1c18f61c87..5bbb803b48f 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts index 8c9cda04ada..61becec95b4 100644 --- a/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts +++ b/libs/api-client/src/api/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommentsResponseResultsItemThreadTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponse.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponse.d.ts index 8873af9e752..7317fa83ac9 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponse.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponse.d.ts @@ -2,13 +2,11 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponse { id?: number; threadId: number; addressId: number; text: string; - plaintext: string; parentId?: string; contentUrl?: string; canvasSignedData?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddress.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddress.d.ts index 98e4d9f9fbd..adbb90cdcfd 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUser.d.ts index d12c242aebb..fa5774dfa5c 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..e8d81e36c1f --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommentResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts index 5f6b31e1b33..486da7dee43 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts index 0e6190b01cc..30b797554e5 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseDiscordMeta { user: CommonApi.UpdateCommentResponseDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReaction.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReaction.d.ts index 4380805c40c..387ad5fef27 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReaction.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReaction.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseReaction { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts index 09aeb3b5b65..c8c1bfe6f4f 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseReactionAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts index 437cb657ee3..20de96dc2a9 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseReactionAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..04bea8dd0a8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommentResponseReactionAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts index d91440395e2..844d8b29592 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseReactionAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThread.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThread.d.ts index a36b6b45fda..b1e2a16f9f5 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThread.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThread.d.ts @@ -2,20 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThread { id?: number; addressId: number; title: string; kind: string; - stage: string; + stage?: string; body?: string; - plaintext?: string; url?: string; topicId?: number; pinned?: boolean; communityId: string; - viewCount: number; + viewCount?: number; links?: CommonApi.UpdateCommentResponseThreadLinksItem[]; contentUrl?: string; readOnly?: boolean; @@ -31,9 +29,9 @@ export interface UpdateCommentResponseThread { archivedAt?: Date; lockedAt?: Date; discordMeta?: CommonApi.UpdateCommentResponseThreadDiscordMeta; - reactionCount: number; - reactionWeightsSum: number; - commentCount: number; + reactionCount?: number; + reactionWeightsSum?: number; + commentCount?: number; activityRankDate?: Date; createdBy?: string; profileName?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts index f5bf43b0d24..f2adfe35b96 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts index f114d875f32..fcfcaaa169e 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..030af5d1d91 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommentResponseThreadAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts index 7af19c72b65..14ed12664b8 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts index c9da29702c5..2f806dd3554 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadCollaboratorsItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts index 1ff84dca6bf..bf379f21394 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadCollaboratorsItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..8a671542b00 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommentResponseThreadCollaboratorsItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts index d5d576eec5d..b7d53499b5d 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadCollaboratorsItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts index 46cc2730141..d5398216ab7 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadDiscordMeta { user: CommonApi.UpdateCommentResponseThreadDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts index bc5ceedd7ff..2ceb32335cc 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadLinksItem { source: CommonApi.UpdateCommentResponseThreadLinksItemSource; identifier: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts index a6fd0f2f708..1f5fc86ff91 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadReactionsItem { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts index 4d83507db33..4eafc2b51f8 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadReactionsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts index 3d8afebaf07..078e82a2ae2 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadReactionsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..e0ada1c5390 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommentResponseThreadReactionsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts index 3ba59d85d38..ba48c304b3b 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadReactionsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts index 979bce026ed..2e2ee184484 100644 --- a/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts +++ b/libs/api-client/src/api/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommentResponseThreadTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/client/Client.d.ts b/libs/api-client/src/api/resources/community/client/Client.d.ts index 4550913558a..f41368b1e73 100644 --- a/libs/api-client/src/api/resources/community/client/Client.d.ts +++ b/libs/api-client/src/api/resources/community/client/Client.d.ts @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as CommonApi from '../../../index'; - export declare namespace Community { interface Options { environment?: core.Supplier; @@ -12,7 +11,6 @@ export declare namespace Community { /** Override the address header */ address?: core.Supplier; } - interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; @@ -24,12 +22,9 @@ export declare namespace Community { address?: string | undefined; } } - export declare class Community { protected readonly _options: Community.Options; - constructor(_options: Community.Options); - /** * @param {CommonApi.GetCommunitiesRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -41,7 +36,6 @@ export declare class Community { request?: CommonApi.GetCommunitiesRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.GetCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -55,7 +49,6 @@ export declare class Community { request: CommonApi.GetCommunityRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.GetMembersRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -69,7 +62,6 @@ export declare class Community { request: CommonApi.GetMembersRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.CreateCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -87,7 +79,6 @@ export declare class Community { request: CommonApi.CreateCommunityRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.UpdateCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -101,7 +92,6 @@ export declare class Community { request: CommonApi.UpdateCommunityRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.CreateTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -115,7 +105,6 @@ export declare class Community { request: CommonApi.CreateTopicRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.UpdateTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -130,7 +119,6 @@ export declare class Community { request: CommonApi.UpdateTopicRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.DeleteTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -145,7 +133,6 @@ export declare class Community { request: CommonApi.DeleteTopicRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.CreateGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -163,7 +150,6 @@ export declare class Community { request: CommonApi.CreateGroupRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.UpdateGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -178,7 +164,6 @@ export declare class Community { request: CommonApi.UpdateGroupRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.DeleteGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -193,7 +178,6 @@ export declare class Community { request: CommonApi.DeleteGroupRequest, requestOptions?: Community.RequestOptions, ): Promise; - /** * @param {CommonApi.JoinCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -207,7 +191,6 @@ export declare class Community { request: CommonApi.JoinCommunityRequest, requestOptions?: Community.RequestOptions, ): Promise; - protected _getCustomAuthorizationHeaders(): Promise<{ 'x-api-key': string; }>; diff --git a/libs/api-client/src/api/resources/community/client/Client.js b/libs/api-client/src/api/resources/community/client/Client.js index 775b4ef1128..4f3d90d3f78 100644 --- a/libs/api-client/src/api/resources/community/client/Client.js +++ b/libs/api-client/src/api/resources/community/client/Client.js @@ -11,7 +11,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -20,7 +19,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -28,13 +26,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -43,12 +39,10 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as errors from '../../../../errors/index'; import * as serializers from '../../../../serialization/index'; - export class Community { constructor(_options) { this._options = _options; } - /** * @param {CommonApi.GetCommunitiesRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -183,7 +177,6 @@ export class Community { } }); } - /** * @param {CommonApi.GetCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -270,7 +263,6 @@ export class Community { } }); } - /** * @param {CommonApi.GetMembersRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -397,7 +389,6 @@ export class Community { } }); } - /** * @param {CommonApi.CreateCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -487,7 +478,6 @@ export class Community { } }); } - /** * @param {CommonApi.UpdateCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -573,7 +563,6 @@ export class Community { } }); } - /** * @param {CommonApi.CreateTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -656,7 +645,6 @@ export class Community { } }); } - /** * @param {CommonApi.UpdateTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -740,7 +728,6 @@ export class Community { } }); } - /** * @param {CommonApi.DeleteTopicRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -824,7 +811,6 @@ export class Community { } }); } - /** * @param {CommonApi.CreateGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -911,7 +897,6 @@ export class Community { } }); } - /** * @param {CommonApi.UpdateGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -995,7 +980,6 @@ export class Community { } }); } - /** * @param {CommonApi.DeleteGroupRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -1079,7 +1063,6 @@ export class Community { } }); } - /** * @param {CommonApi.JoinCommunityRequest} request * @param {Community.RequestOptions} requestOptions - Request-specific configuration. @@ -1162,7 +1145,6 @@ export class Community { } }); } - _getCustomAuthorizationHeaders() { return __awaiter(this, void 0, void 0, function* () { const apiKeyValue = yield core.Supplier.get(this._options.apiKey); diff --git a/libs/api-client/src/api/resources/community/client/requests/CreateCommunityRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/CreateCommunityRequest.d.ts index b08147304c1..ac855cbf49a 100644 --- a/libs/api-client/src/api/resources/community/client/requests/CreateCommunityRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/CreateCommunityRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/client/requests/CreateGroupRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/CreateGroupRequest.d.ts index 4ffa6b4c7df..9660e472753 100644 --- a/libs/api-client/src/api/resources/community/client/requests/CreateGroupRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/CreateGroupRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/client/requests/CreateTopicRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/CreateTopicRequest.d.ts index dde5682283b..0bbf46aecea 100644 --- a/libs/api-client/src/api/resources/community/client/requests/CreateTopicRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/CreateTopicRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/client/requests/GetCommunitiesRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/GetCommunitiesRequest.d.ts index eec6e0e954a..b9a5772b8c6 100644 --- a/libs/api-client/src/api/resources/community/client/requests/GetCommunitiesRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/GetCommunitiesRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * {} diff --git a/libs/api-client/src/api/resources/community/client/requests/GetMembersRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/GetMembersRequest.d.ts index 57b8d45eb12..a9465d03617 100644 --- a/libs/api-client/src/api/resources/community/client/requests/GetMembersRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/GetMembersRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.d.ts new file mode 100644 index 00000000000..9191b94a0ad --- /dev/null +++ b/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.d.ts @@ -0,0 +1,12 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +/** + * @example + * { + * communityId: "community_id" + * } + */ +export interface JoinCommunityRequest { + communityId: string; +} diff --git a/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.js b/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/client/requests/JoinCommunityRequest.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/client/requests/UpdateCommunityRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/UpdateCommunityRequest.d.ts index 918bbe83301..186dd9d7448 100644 --- a/libs/api-client/src/api/resources/community/client/requests/UpdateCommunityRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/UpdateCommunityRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/client/requests/UpdateGroupRequest.d.ts b/libs/api-client/src/api/resources/community/client/requests/UpdateGroupRequest.d.ts index 71a2dbd736a..0e5154a1ced 100644 --- a/libs/api-client/src/api/resources/community/client/requests/UpdateGroupRequest.d.ts +++ b/libs/api-client/src/api/resources/community/client/requests/UpdateGroupRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponse.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponse.d.ts index 3a6e4ec7055..3c50d4b2fe0 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponse { community: CommonApi.CreateCommunityResponseCommunity; adminAddress?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunity.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunity.d.ts index 08b526d364a..2b37cabd8c0 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunity.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunity.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunity { id: string; name: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts index 3a859829dcf..3ae73cfca10 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts index 3b231e2f650..a6fcec90888 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..43ebbe735b7 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommunityResponseCommunityAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts index 535625b6f53..b35cc3a2472 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts index 84986e768d7..bf750c57b76 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts index 77229d2b907..d040988f0fc 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts index 7b7468fbb0c..70dd320d813 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts index 2368d5f6fd1..e85fe93f14e 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts index 73ef8414106..0cf75424c80 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts index 166e1571f4c..549f990c8b8 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts index ec07c76bb89..1403997252a 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts index fb53ebedafe..276df22a564 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts index 03d3914cc8b..3bb684d47cf 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts index b07b08b0c5f..d289b480837 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateCommunityResponseCommunityGroupsItemRequirementsItem = | CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItem.Threshold @@ -12,7 +11,6 @@ export declare namespace CreateCommunityResponseCommunityGroupsItemRequirementsI extends CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts index 222f79f5d7d..d1d4eef487d 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow { data: CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts index 4a69a6eeed8..2b732912049 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold { data: CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts index 1dae08cc80b..66d6b38eb16 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts index 4a78e30e61c..00487f4f7c4 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource = | CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 5f96e31a9fe..a4fdce763e2 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 5541fa6cf53..ce436ef1c5c 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts index 568c6478a04..9b636453bd4 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateCommunityResponseCommunityTerms = | CommonApi.CreateCommunityResponseCommunityTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts index 871c4a91b19..08a4a49d8c8 100644 --- a/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommunityResponseCommunityTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItem.d.ts index 62ecaebfbaa..f572b6b6a47 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateGroupRequestRequirementsItem = | CommonApi.CreateGroupRequestRequirementsItem.Threshold | CommonApi.CreateGroupRequestRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace CreateGroupRequestRequirementsItem { extends CommonApi.CreateGroupRequestRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.CreateGroupRequestRequirementsItemAllow { rule: 'allow'; } diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts index 8adde7400b6..32abc5f52d1 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupRequestRequirementsItemAllow { data: CommonApi.CreateGroupRequestRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts index 337be3516e1..3993bdfea48 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupRequestRequirementsItemThreshold { data: CommonApi.CreateGroupRequestRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts index c55d05893ce..6208d8c85a1 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupRequestRequirementsItemThresholdData { threshold: string; source: CommonApi.CreateGroupRequestRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts index 1249bd4d477..93c5498d30e 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateGroupRequestRequirementsItemThresholdDataSource = | CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceTokenId | CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts index 7cfab390422..51846a165d5 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupRequestRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts index 5497a1c7c44..5380a1b7018 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupRequestRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponse.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponse.d.ts index 52c0aa58d50..3ca22248567 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponse { id?: string; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItem.d.ts index 384433465ca..bf8c35fc001 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts index d356fedb637..35ebc4c2c99 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..ee1f9ac3e3f --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateGroupResponseAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts index 17d32926779..43e01e0118b 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseChainNode.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseChainNode.d.ts index 1e3578afa1f..afd69370bee 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts index d5c0800eb4d..9cb411de2b1 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts index d29dea68bd9..243dd001da6 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts index 5bae1d6553c..f218e66705b 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItem.d.ts index c46bfa3ef33..6c168be3d60 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts index 4962aa00eb5..d1acea005bd 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts index b1525b266fb..ee61d0290e8 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts index fa6c4520ad8..4d734858ff9 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItem.d.ts index 8051bd7367c..d5ac3f47ffa 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts index 907ab354d19..f4e9f5a916d 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateGroupResponseGroupsItemRequirementsItem = | CommonApi.CreateGroupResponseGroupsItemRequirementsItem.Threshold | CommonApi.CreateGroupResponseGroupsItemRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace CreateGroupResponseGroupsItemRequirementsItem { extends CommonApi.CreateGroupResponseGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.CreateGroupResponseGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts index b50666abd55..f3e46272b6d 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItemRequirementsItemAllow { data: CommonApi.CreateGroupResponseGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts index 3f4c1e19cd4..2b5a1a8087b 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItemRequirementsItemThreshold { data: CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts index 86fb1a96e6f..1566942aa64 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts index a07a2af5702..e0ca11ecac8 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource = | CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 13d1e57380f..5412b6446b4 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index b71ba5bad63..7a193ac478f 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseTerms.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseTerms.d.ts index 12afe2bfc80..ffac65e156c 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type CreateGroupResponseTerms = | CommonApi.CreateGroupResponseTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/CreateGroupResponseTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/CreateGroupResponseTopicsItem.d.ts index f9bc1dc80d5..3dfd27fc4ec 100644 --- a/libs/api-client/src/api/resources/community/types/CreateGroupResponseTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateGroupResponseTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateGroupResponseTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/CreateTopicResponse.d.ts b/libs/api-client/src/api/resources/community/types/CreateTopicResponse.d.ts index 63e09cde515..88dded80c04 100644 --- a/libs/api-client/src/api/resources/community/types/CreateTopicResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateTopicResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateTopicResponse { topic: CommonApi.CreateTopicResponseTopic; userId: number; diff --git a/libs/api-client/src/api/resources/community/types/CreateTopicResponseTopic.d.ts b/libs/api-client/src/api/resources/community/types/CreateTopicResponseTopic.d.ts index 55cdb47095d..ef1eb96bb22 100644 --- a/libs/api-client/src/api/resources/community/types/CreateTopicResponseTopic.d.ts +++ b/libs/api-client/src/api/resources/community/types/CreateTopicResponseTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateTopicResponseTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponse.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponse.d.ts index 62818bb8563..44308969798 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponse { limit: number; page: number; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItem.d.ts index 48733215a5c..2bfa53a62eb 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItem { id: string; name: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts index e8b748e17fb..04b03e3ce92 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts index c1710c81d43..5c690c4578f 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..75810708bcf --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommunitiesResponseResultsItemAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts index 915ef3f3dd1..2857a0424f6 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts index 7153374781d..82e6b8244f5 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts index 9e31ee52244..5d1b9e2fcdd 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts index 22a6f023971..1c39cdc65ab 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts index fa14c863a3d..f7c25d98370 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts index fdda62757ff..830eee4a98f 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts index f1f13bf7f20..1b142951fe4 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts index a8a022b52eb..b02cb2a495f 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts index 63ca3f62695..6b7b016df7a 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts index 2e2bfc854c1..6398ac85cc6 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts index 322e43a41e1..84ec68848ea 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunitiesResponseResultsItemGroupsItemRequirementsItem = | CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.Threshold @@ -12,7 +11,6 @@ export declare namespace GetCommunitiesResponseResultsItemGroupsItemRequirements extends CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts index 9fe63e47b04..14bf48d6410 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow { data: CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts index ec6ab32f73d..a01cb14a989 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold { data: CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts index 898a856f337..d901dad0370 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts index db7afc0d901..550c8cc0e5e 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource = | CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 0e1a646463b..a5584816226 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index beb187dd916..419836aa389 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts index b30701aff35..6ddcca4cb8a 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunitiesResponseResultsItemTerms = | CommonApi.GetCommunitiesResponseResultsItemTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts index b46b2fd3dfb..9647fddb101 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunitiesResponseResultsItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponse.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponse.d.ts index c746235fd1a..5482629dacd 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunityResponse = | CommonApi.GetCommunityResponseAddresses | unknown; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddresses.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddresses.d.ts index 9e378cce85a..7112e7b4648 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddresses.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddresses.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddresses { id: string; name: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts index 315b6ac396f..16a1e961f02 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts index 2b3bf38f9b0..613586757b7 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..d89fdfac87c --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetCommunityResponseAddressesAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts index 364c7598b7d..eaf56a68878 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts index 80318c377f5..3342aa5a841 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesAdminsAndModsItem { address: string; role: CommonApi.GetCommunityResponseAddressesAdminsAndModsItemRole; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts index 17eb6ccfe99..c23d7ecaf9a 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts index 7c9f35db309..7a5b96dc567 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts index 16d28250ddd..129574f4279 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts index 8468a52a1a8..273a2131176 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts index 2b90456c751..04655c9ec91 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts index 17343329454..d46cf900702 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts index 8acd6b57e53..8e2d777629d 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts index 97fdde0259b..3cfe69f7d23 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts index 53a9dd8f7c3..eb66aa72a1a 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts index 7612db8d64b..b36370330a8 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunityResponseAddressesGroupsItemRequirementsItem = | CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItem.Threshold | CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace GetCommunityResponseAddressesGroupsItemRequirementsItem extends CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts index 071d56da921..751d84ccc50 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItemRequirementsItemAllow { data: CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts index 4c5e397026c..b3305e3e62e 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold { data: CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts index 50529e04486..76ed1c3808f 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts index f1cbabdf1dc..63130908642 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource = | CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 694ab74bab0..2b5925ba805 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index ecd4ab05273..787b8f9353f 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTerms.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTerms.d.ts index 0493bab748e..3f4b5c0ea12 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type GetCommunityResponseAddressesTerms = | CommonApi.GetCommunityResponseAddressesTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts index 10af0e424cd..4db47366fd4 100644 --- a/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetCommunityResponseAddressesTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/GetMembersResponse.d.ts b/libs/api-client/src/api/resources/community/types/GetMembersResponse.d.ts index cf0d0d2f27a..46422079b44 100644 --- a/libs/api-client/src/api/resources/community/types/GetMembersResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetMembersResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetMembersResponse { limit: number; page: number; diff --git a/libs/api-client/src/api/resources/community/types/GetMembersResponseResultsItem.d.ts b/libs/api-client/src/api/resources/community/types/GetMembersResponseResultsItem.d.ts index b8309a34aff..0fea66f391b 100644 --- a/libs/api-client/src/api/resources/community/types/GetMembersResponseResultsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/GetMembersResponseResultsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface GetMembersResponseResultsItem { userId: number; profileName?: string; diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.d.ts b/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.d.ts new file mode 100644 index 00000000000..c06a928361c --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.d.ts @@ -0,0 +1,12 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../index'; +export interface JoinCommunityResponse { + communityId: string; + base: CommonApi.JoinCommunityResponseBase; + addressId: number; + address: string; + walletId?: CommonApi.JoinCommunityResponseWalletId; + ss58Prefix?: number; +} diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.js b/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponse.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.d.ts b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.d.ts new file mode 100644 index 00000000000..15397504f1c --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.d.ts @@ -0,0 +1,16 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export declare type JoinCommunityResponseBase = + | 'cosmos' + | 'substrate' + | 'ethereum' + | 'near' + | 'solana'; +export declare const JoinCommunityResponseBase: { + readonly Cosmos: 'cosmos'; + readonly Substrate: 'substrate'; + readonly Ethereum: 'ethereum'; + readonly Near: 'near'; + readonly Solana: 'solana'; +}; diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.js b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.js new file mode 100644 index 00000000000..6fa2f0f1eb2 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseBase.js @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export const JoinCommunityResponseBase = { + Cosmos: 'cosmos', + Substrate: 'substrate', + Ethereum: 'ethereum', + Near: 'near', + Solana: 'solana', +}; diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.d.ts b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.d.ts new file mode 100644 index 00000000000..abe6b60c7e3 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.d.ts @@ -0,0 +1,32 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export declare type JoinCommunityResponseWalletId = + | 'magic' + | 'polkadot' + | 'metamask' + | 'walletconnect' + | 'keplr-ethereum' + | 'keplr' + | 'leap' + | 'near' + | 'terrastation' + | 'terra-walletconnect' + | 'cosm-metamask' + | 'phantom' + | 'coinbase'; +export declare const JoinCommunityResponseWalletId: { + readonly Magic: 'magic'; + readonly Polkadot: 'polkadot'; + readonly Metamask: 'metamask'; + readonly Walletconnect: 'walletconnect'; + readonly KeplrEthereum: 'keplr-ethereum'; + readonly Keplr: 'keplr'; + readonly Leap: 'leap'; + readonly Near: 'near'; + readonly Terrastation: 'terrastation'; + readonly TerraWalletconnect: 'terra-walletconnect'; + readonly CosmMetamask: 'cosm-metamask'; + readonly Phantom: 'phantom'; + readonly Coinbase: 'coinbase'; +}; diff --git a/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.js b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.js new file mode 100644 index 00000000000..63fa4b08e63 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/JoinCommunityResponseWalletId.js @@ -0,0 +1,18 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export const JoinCommunityResponseWalletId = { + Magic: 'magic', + Polkadot: 'polkadot', + Metamask: 'metamask', + Walletconnect: 'walletconnect', + KeplrEthereum: 'keplr-ethereum', + Keplr: 'keplr', + Leap: 'leap', + Near: 'near', + Terrastation: 'terrastation', + TerraWalletconnect: 'terra-walletconnect', + CosmMetamask: 'cosm-metamask', + Phantom: 'phantom', + Coinbase: 'coinbase', +}; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts index ff69736930f..236d74e1a5a 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts index 030deecc127..d5b9952aaaa 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..4533c59c6e9 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommunityRequestAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts index 8a799e7b831..15a29714c24 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestChainNode.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestChainNode.d.ts index b8739c445f5..c86016b6ba6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts index 814c9937304..aa118604af3 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts index 5259f96b46d..80258dc3bce 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts index ef4369455d3..67901dc57ae 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts index f6bac27d48a..ee5ce9ec4a6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts index 0f62493d3fa..688696515e6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts index f73ff5e597f..12c0cb614e0 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts index 2b461cefa95..e170f68ffa4 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts index 60379332155..474e9b41bd0 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts index c5e004eb18e..819159bd4df 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityRequestGroupsItemRequirementsItem = | CommonApi.UpdateCommunityRequestGroupsItemRequirementsItem.Threshold | CommonApi.UpdateCommunityRequestGroupsItemRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace UpdateCommunityRequestGroupsItemRequirementsItem { extends CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts index ad040c0793c..06b61f21251 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItemRequirementsItemAllow { data: CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts index 343ac87cc62..75cf9904f4b 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItemRequirementsItemThreshold { data: CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts index 9e93f82ffc1..39bcdefd30a 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts index 7d2db13001a..3c7a9337efe 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource = | CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index eb0ac192251..df16d1c7998 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 4cdb11051aa..3443ae74c7a 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTerms.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTerms.d.ts index d3c7fd00e61..a94194194a1 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityRequestTerms = | CommonApi.UpdateCommunityRequestTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts index 95b15d52df3..4b6c91f9e5f 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityRequestTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponse.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponse.d.ts index 528071e75df..97d37be9669 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponse { id: string; name: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts index c31daf99592..f6783104b54 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseAddressesItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts index 75aafce44a6..47c4fb2ff4a 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseAddressesItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..9122b63c168 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateCommunityResponseAddressesItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts index f63027615b1..90cc035e4b7 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseAddressesItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseChainNode.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseChainNode.d.ts index b97cb492f3f..1b7fadcd473 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseChainNode.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseChainNode.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseChainNode { id?: number; url?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts index b17fc731f98..7419a4f6ccb 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseCommunityStakesItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts index 56cb3706e49..be78513bb6b 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem { transactionHash: string; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts index 01339e42b8a..98b46fd056f 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseCommunityTagsItem { communityId: string; tagId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts index 2743c4e030e..7752b3feb7d 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain Contest Manager */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts index 60f58eb2696..8e70eb05e61 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts index f63b7bc9265..672dd5684e9 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - /** * On-Chain content related actions on contest instance */ diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts index beb8934becd..4d85168eec2 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseContestManagersItemTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts index 4233d454058..97c851caf65 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItem { id?: number; communityId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts index 1ccab3bcaec..47ff3652f76 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityResponseGroupsItemRequirementsItem = | CommonApi.UpdateCommunityResponseGroupsItemRequirementsItem.Threshold | CommonApi.UpdateCommunityResponseGroupsItemRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace UpdateCommunityResponseGroupsItemRequirementsItem { extends CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemAllow { rule: 'allow'; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts index 61aedf31acf..d61a78649a8 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItemRequirementsItemAllow { data: CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts index bf2185adf60..ceaf53adbe7 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItemRequirementsItemThreshold { data: CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts index 99362498cfe..3fe62f67b49 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItemRequirementsItemThresholdData { threshold: string; source: CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts index 8f904d6b34e..a3a2aa8b2fe 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource = | CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 66a79469c0e..0433d2766c6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 209cf155ebd..b8b6e7bb6be 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTerms.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTerms.d.ts index baf3b48ea59..ddd18675bb6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTerms.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTerms.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateCommunityResponseTerms = | CommonApi.UpdateCommunityResponseTermsZero | string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts index 0745cad93c5..3792e6b23d6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateCommunityResponseTopicsItem { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts index 9a1a5ed5fa1..353bdaede2c 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateGroupRequestRequirementsItem = | CommonApi.UpdateGroupRequestRequirementsItem.Threshold | CommonApi.UpdateGroupRequestRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace UpdateGroupRequestRequirementsItem { extends CommonApi.UpdateGroupRequestRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.UpdateGroupRequestRequirementsItemAllow { rule: 'allow'; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts index e3b777a6cc2..a64e004ea0f 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupRequestRequirementsItemAllow { data: CommonApi.UpdateGroupRequestRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts index bc5e3a7949f..4a35e0c4497 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupRequestRequirementsItemThreshold { data: CommonApi.UpdateGroupRequestRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts index 36877cc0490..b2ca5ebc21e 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupRequestRequirementsItemThresholdData { threshold: string; source: CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts index a476ab1fa2d..6a5663988a7 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateGroupRequestRequirementsItemThresholdDataSource = | CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId | CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts index 6b14db4e5ea..5da6942b4bc 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupRequestRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts index 03ae0bc7c1b..fbbb88a1315 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponse.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponse.d.ts index ff12ffac78a..03e674d2d39 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponse { id?: number; communityId?: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts index dde2d1af386..260e0cd869a 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateGroupResponseRequirementsItem = | CommonApi.UpdateGroupResponseRequirementsItem.Threshold | CommonApi.UpdateGroupResponseRequirementsItem.Allow; @@ -11,7 +10,6 @@ export declare namespace UpdateGroupResponseRequirementsItem { extends CommonApi.UpdateGroupResponseRequirementsItemThreshold { rule: 'threshold'; } - interface Allow extends CommonApi.UpdateGroupResponseRequirementsItemAllow { rule: 'allow'; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts index cb47e2c8cb2..eda78c1462c 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponseRequirementsItemAllow { data: CommonApi.UpdateGroupResponseRequirementsItemAllowData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts index f4e5d57a172..dd2c0e656d6 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponseRequirementsItemThreshold { data: CommonApi.UpdateGroupResponseRequirementsItemThresholdData; } diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts index a19c59a7b18..47221324bca 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponseRequirementsItemThresholdData { threshold: string; source: CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSource; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts index 14d42823b0b..c3c8a1b90c0 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export declare type UpdateGroupResponseRequirementsItemThresholdDataSource = | CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId | CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts index 9735a7fe060..26192556ea4 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponseRequirementsItemThresholdDataSourceThree { sourceType: CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType; cosmosChainId: string; diff --git a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts index 1eb076620ac..d7e1cba5466 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId { sourceType: CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType; evmChainId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateTopicResponse.d.ts b/libs/api-client/src/api/resources/community/types/UpdateTopicResponse.d.ts index 6c6b3f91fd5..7d9bfaa8d69 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateTopicResponse.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateTopicResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateTopicResponse { topic: CommonApi.UpdateTopicResponseTopic; userId: number; diff --git a/libs/api-client/src/api/resources/community/types/UpdateTopicResponseTopic.d.ts b/libs/api-client/src/api/resources/community/types/UpdateTopicResponseTopic.d.ts index 2b2a3d793dc..f924975cbcc 100644 --- a/libs/api-client/src/api/resources/community/types/UpdateTopicResponseTopic.d.ts +++ b/libs/api-client/src/api/resources/community/types/UpdateTopicResponseTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateTopicResponseTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/index.d.ts b/libs/api-client/src/api/resources/index.d.ts index 9d93375d2da..531ef16fd91 100644 --- a/libs/api-client/src/api/resources/index.d.ts +++ b/libs/api-client/src/api/resources/index.d.ts @@ -10,3 +10,6 @@ export * from './reaction/types'; export * as thread from './thread'; export * from './thread/client/requests'; export * from './thread/types'; +export * as user from './user'; +export * from './user/client/requests'; +export * from './user/types'; diff --git a/libs/api-client/src/api/resources/index.js b/libs/api-client/src/api/resources/index.js index 9d93375d2da..531ef16fd91 100644 --- a/libs/api-client/src/api/resources/index.js +++ b/libs/api-client/src/api/resources/index.js @@ -10,3 +10,6 @@ export * from './reaction/types'; export * as thread from './thread'; export * from './thread/client/requests'; export * from './thread/types'; +export * as user from './user'; +export * from './user/client/requests'; +export * from './user/types'; diff --git a/libs/api-client/src/api/resources/reaction/client/Client.d.ts b/libs/api-client/src/api/resources/reaction/client/Client.d.ts index efc05de6b6c..e2932d01387 100644 --- a/libs/api-client/src/api/resources/reaction/client/Client.d.ts +++ b/libs/api-client/src/api/resources/reaction/client/Client.d.ts @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as CommonApi from '../../../index'; - export declare namespace Reaction { interface Options { environment?: core.Supplier; @@ -12,7 +11,6 @@ export declare namespace Reaction { /** Override the address header */ address?: core.Supplier; } - interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; @@ -24,12 +22,9 @@ export declare namespace Reaction { address?: string | undefined; } } - export declare class Reaction { protected readonly _options: Reaction.Options; - constructor(_options: Reaction.Options); - /** * @param {CommonApi.CreateThreadReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -43,7 +38,6 @@ export declare class Reaction { request: CommonApi.CreateThreadReactionRequest, requestOptions?: Reaction.RequestOptions, ): Promise; - /** * @param {CommonApi.CreateCommentReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -57,7 +51,6 @@ export declare class Reaction { request: CommonApi.CreateCommentReactionRequest, requestOptions?: Reaction.RequestOptions, ): Promise; - /** * @param {CommonApi.DeleteReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -72,7 +65,6 @@ export declare class Reaction { request: CommonApi.DeleteReactionRequest, requestOptions?: Reaction.RequestOptions, ): Promise; - protected _getCustomAuthorizationHeaders(): Promise<{ 'x-api-key': string; }>; diff --git a/libs/api-client/src/api/resources/reaction/client/Client.js b/libs/api-client/src/api/resources/reaction/client/Client.js index ca48db3525d..36694921e80 100644 --- a/libs/api-client/src/api/resources/reaction/client/Client.js +++ b/libs/api-client/src/api/resources/reaction/client/Client.js @@ -11,7 +11,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -20,7 +19,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -28,13 +26,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -43,12 +39,10 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as errors from '../../../../errors/index'; import * as serializers from '../../../../serialization/index'; - export class Reaction { constructor(_options) { this._options = _options; } - /** * @param {CommonApi.CreateThreadReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -140,7 +134,6 @@ export class Reaction { } }); } - /** * @param {CommonApi.CreateCommentReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -232,7 +225,6 @@ export class Reaction { } }); } - /** * @param {CommonApi.DeleteReactionRequest} request * @param {Reaction.RequestOptions} requestOptions - Request-specific configuration. @@ -316,7 +308,6 @@ export class Reaction { } }); } - _getCustomAuthorizationHeaders() { return __awaiter(this, void 0, void 0, function* () { const apiKeyValue = yield core.Supplier.get(this._options.apiKey); diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponse.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponse.d.ts index edb0358d074..b293d3fb1ad 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponse.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentReactionResponse { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts index 12269eb9e3c..a4e383bd9f0 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentReactionResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts index 99ad4755bcf..d519225d1d3 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentReactionResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..944fff3e977 --- /dev/null +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateCommentReactionResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts index dddc5a24a60..15e5fb547f1 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateCommentReactionResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponse.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponse.d.ts index 0f6d6d0a802..17ec7c0d75e 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponse.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponse.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadReactionResponse { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts index ea9768a83a7..4ae16ef3162 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadReactionResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts index 04c1bf42388..202d9895a62 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadReactionResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..c23b3a195c9 --- /dev/null +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateThreadReactionResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts index 2fb73553275..473737bddf8 100644 --- a/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadReactionResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/client/Client.d.ts b/libs/api-client/src/api/resources/thread/client/Client.d.ts index b2345cf8c47..1945430d569 100644 --- a/libs/api-client/src/api/resources/thread/client/Client.d.ts +++ b/libs/api-client/src/api/resources/thread/client/Client.d.ts @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as CommonApi from '../../../index'; - export declare namespace Thread { interface Options { environment?: core.Supplier; @@ -12,7 +11,6 @@ export declare namespace Thread { /** Override the address header */ address?: core.Supplier; } - interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; @@ -24,12 +22,9 @@ export declare namespace Thread { address?: string | undefined; } } - export declare class Thread { protected readonly _options: Thread.Options; - constructor(_options: Thread.Options); - /** * @param {CommonApi.CreateThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -49,7 +44,6 @@ export declare class Thread { request: CommonApi.CreateThreadRequest, requestOptions?: Thread.RequestOptions, ): Promise; - /** * @param {CommonApi.UpdateThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -63,7 +57,6 @@ export declare class Thread { request: CommonApi.UpdateThreadRequest, requestOptions?: Thread.RequestOptions, ): Promise; - /** * @param {CommonApi.DeleteThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -77,7 +70,6 @@ export declare class Thread { request: CommonApi.DeleteThreadRequest, requestOptions?: Thread.RequestOptions, ): Promise; - protected _getCustomAuthorizationHeaders(): Promise<{ 'x-api-key': string; }>; diff --git a/libs/api-client/src/api/resources/thread/client/Client.js b/libs/api-client/src/api/resources/thread/client/Client.js index df4f464a875..a0942159d3d 100644 --- a/libs/api-client/src/api/resources/thread/client/Client.js +++ b/libs/api-client/src/api/resources/thread/client/Client.js @@ -11,7 +11,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -20,7 +19,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -28,13 +26,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -43,12 +39,10 @@ import * as core from '../../../../core'; import * as environments from '../../../../environments'; import * as errors from '../../../../errors/index'; import * as serializers from '../../../../serialization/index'; - export class Thread { constructor(_options) { this._options = _options; } - /** * @param {CommonApi.CreateThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -137,7 +131,6 @@ export class Thread { } }); } - /** * @param {CommonApi.UpdateThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -220,7 +213,6 @@ export class Thread { } }); } - /** * @param {CommonApi.DeleteThreadRequest} request * @param {Thread.RequestOptions} requestOptions - Request-specific configuration. @@ -303,7 +295,6 @@ export class Thread { } }); } - _getCustomAuthorizationHeaders() { return __awaiter(this, void 0, void 0, function* () { const apiKeyValue = yield core.Supplier.get(this._options.apiKey); diff --git a/libs/api-client/src/api/resources/thread/client/requests/CreateThreadRequest.d.ts b/libs/api-client/src/api/resources/thread/client/requests/CreateThreadRequest.d.ts index c38c9e919e8..b55e3a277b6 100644 --- a/libs/api-client/src/api/resources/thread/client/requests/CreateThreadRequest.d.ts +++ b/libs/api-client/src/api/resources/thread/client/requests/CreateThreadRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/thread/client/requests/UpdateThreadRequest.d.ts b/libs/api-client/src/api/resources/thread/client/requests/UpdateThreadRequest.d.ts index 3d8e0807f02..ef172037d9c 100644 --- a/libs/api-client/src/api/resources/thread/client/requests/UpdateThreadRequest.d.ts +++ b/libs/api-client/src/api/resources/thread/client/requests/UpdateThreadRequest.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../../index'; - /** * @example * { diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts index 52abcc39dd9..2fa705cf255 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadRequestDiscordMeta { user: CommonApi.CreateThreadRequestDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponse.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponse.d.ts index 35bcc2954cb..74ae8c1ab28 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponse.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponse.d.ts @@ -2,20 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponse { id?: number; addressId: number; title: string; kind: string; - stage: string; + stage?: string; body?: string; - plaintext?: string; url?: string; topicId?: number; pinned?: boolean; communityId: string; - viewCount: number; + viewCount?: number; links?: CommonApi.CreateThreadResponseLinksItem[]; contentUrl?: string; readOnly?: boolean; @@ -31,9 +29,9 @@ export interface CreateThreadResponse { archivedAt?: Date; lockedAt?: Date; discordMeta?: CommonApi.CreateThreadResponseDiscordMeta; - reactionCount: number; - reactionWeightsSum: number; - commentCount: number; + reactionCount?: number; + reactionWeightsSum?: number; + commentCount?: number; activityRankDate?: Date; createdBy?: string; profileName?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddress.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddress.d.ts index 00f93175ec8..adeec8b830d 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUser.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUser.d.ts index 41bb280dd5e..7694fdde3b4 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..c3cd69123d4 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateThreadResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts index 92c06538093..4f271f60813 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts index 6f0c7628470..95aa965c893 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseCollaboratorsItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts index 99d9fd3e07c..bae29c29de9 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseCollaboratorsItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..d76d122c363 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateThreadResponseCollaboratorsItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts index 69b69cc1a7e..d6b33c4bb01 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseCollaboratorsItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts index eabdaac1122..6de593c933e 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseDiscordMeta { user: CommonApi.CreateThreadResponseDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseLinksItem.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseLinksItem.d.ts index 9470813efde..3150aa6bb36 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseLinksItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseLinksItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseLinksItem { source: CommonApi.CreateThreadResponseLinksItemSource; identifier: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItem.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItem.d.ts index 3e47831c9a2..0685e6ecd72 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseReactionsItem { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts index 08770b598cd..1ed126d8997 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseReactionsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts index 53944a56f1d..0d80f7bc4fc 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseReactionsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..15c113e5e31 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface CreateThreadResponseReactionsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts index c081e9bc267..0b7ece10ffb 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseReactionsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseTopic.d.ts b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseTopic.d.ts index f7481cfe1b7..0287dec5512 100644 --- a/libs/api-client/src/api/resources/thread/types/CreateThreadResponseTopic.d.ts +++ b/libs/api-client/src/api/resources/thread/types/CreateThreadResponseTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface CreateThreadResponseTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponse.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponse.d.ts index ae14115a4d5..7cc09aa9a28 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponse.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponse.d.ts @@ -2,20 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponse { id?: number; addressId: number; title: string; kind: string; - stage: string; + stage?: string; body?: string; - plaintext?: string; url?: string; topicId?: number; pinned?: boolean; communityId: string; - viewCount: number; + viewCount?: number; links?: CommonApi.UpdateThreadResponseLinksItem[]; contentUrl?: string; readOnly?: boolean; @@ -31,9 +29,9 @@ export interface UpdateThreadResponse { archivedAt?: Date; lockedAt?: Date; discordMeta?: CommonApi.UpdateThreadResponseDiscordMeta; - reactionCount: number; - reactionWeightsSum: number; - commentCount: number; + reactionCount?: number; + reactionWeightsSum?: number; + commentCount?: number; activityRankDate?: Date; createdBy?: string; profileName?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddress.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddress.d.ts index 3efda890103..55a6d1cf978 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddress.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUser.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUser.d.ts index 55c03895daf..4aba85fd3bd 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..aa1d7993cd3 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateThreadResponseAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts index 22dbb314c8b..19456b9a30f 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts index fb5e82b1f8c..292701811db 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseCollaboratorsItem { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts index 5baeb66b064..8fc299afceb 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseCollaboratorsItemUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..a1bd7fb9272 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateThreadResponseCollaboratorsItemUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts index f9d81d49216..3db88866f76 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseCollaboratorsItemUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts index 4e273c5510f..4cd18ee5dc8 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseDiscordMeta { user: CommonApi.UpdateThreadResponseDiscordMetaUser; channelId: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseLinksItem.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseLinksItem.d.ts index 5a3682eb6a8..2ad0de3c34d 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseLinksItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseLinksItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseLinksItem { source: CommonApi.UpdateThreadResponseLinksItemSource; identifier: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts index 20953bb36ec..22a80bceb33 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseReactionsItem { id?: number; addressId: number; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts index 31da1ea9410..0fa6df3922d 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseReactionsItemAddress { id?: number; address: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts index 4e621624170..7085341f2eb 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseReactionsItemAddressUser { id?: number; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..880a00bde11 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface UpdateThreadResponseReactionsItemAddressUserApiKey { + userId?: number; + hashedApiKey: string; + salt: string; + createdAt?: Date; + updatedAt?: Date; +} diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts index 784574efdb5..49647d47256 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseReactionsItemAddressUserProfile { name?: string; email?: string; diff --git a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseTopic.d.ts b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseTopic.d.ts index cea6aa3e83c..197c6e54c25 100644 --- a/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseTopic.d.ts +++ b/libs/api-client/src/api/resources/thread/types/UpdateThreadResponseTopic.d.ts @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as CommonApi from '../../../index'; - export interface UpdateThreadResponseTopic { id?: number; name?: string; diff --git a/libs/api-client/src/api/resources/user/client/Client.d.ts b/libs/api-client/src/api/resources/user/client/Client.d.ts new file mode 100644 index 00000000000..58e40b088e3 --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/Client.d.ts @@ -0,0 +1,51 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import * as environments from '../../../../environments'; +import * as CommonApi from '../../../index'; +export declare namespace User { + interface Options { + environment?: core.Supplier; + apiKey: core.Supplier; + /** Override the address header */ + address?: core.Supplier; + } + interface RequestOptions { + /** The maximum time to wait for a response in seconds. */ + timeoutInSeconds?: number; + /** The number of times to retry the request. Defaults to 2. */ + maxRetries?: number; + /** A hook to abort the request. */ + abortSignal?: AbortSignal; + /** Override the address header */ + address?: string | undefined; + } +} +export declare class User { + protected readonly _options: User.Options; + constructor(_options: User.Options); + /** + * @param {CommonApi.GetUserActivityRequest} request + * @param {User.RequestOptions} requestOptions - Request-specific configuration. + * + * @example + * await client.user.getUserActivity() + */ + getUserActivity( + request?: CommonApi.GetUserActivityRequest, + requestOptions?: User.RequestOptions, + ): Promise; + /** + * @param {User.RequestOptions} requestOptions - Request-specific configuration. + * + * @example + * await client.user.getNewContent() + */ + getNewContent( + requestOptions?: User.RequestOptions, + ): Promise; + protected _getCustomAuthorizationHeaders(): Promise<{ + 'x-api-key': string; + }>; +} diff --git a/libs/api-client/src/api/resources/user/client/Client.js b/libs/api-client/src/api/resources/user/client/Client.js new file mode 100644 index 00000000000..bcad0730ef5 --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/Client.js @@ -0,0 +1,220 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +var __awaiter = + (this && this.__awaiter) || + function (thisArg, _arguments, P, generator) { + function adopt(value) { + return value instanceof P + ? value + : new P(function (resolve) { + resolve(value); + }); + } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { + try { + step(generator.next(value)); + } catch (e) { + reject(e); + } + } + function rejected(value) { + try { + step(generator['throw'](value)); + } catch (e) { + reject(e); + } + } + function step(result) { + result.done + ? resolve(result.value) + : adopt(result.value).then(fulfilled, rejected); + } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); + }; +import urlJoin from 'url-join'; +import * as core from '../../../../core'; +import * as environments from '../../../../environments'; +import * as errors from '../../../../errors/index'; +import * as serializers from '../../../../serialization/index'; +export class User { + constructor(_options) { + this._options = _options; + } + /** + * @param {CommonApi.GetUserActivityRequest} request + * @param {User.RequestOptions} requestOptions - Request-specific configuration. + * + * @example + * await client.user.getUserActivity() + */ + getUserActivity(request = {}, requestOptions) { + var _a; + return __awaiter(this, void 0, void 0, function* () { + const { isGlobal, threadLimit, commentLimit } = request; + const _queryParams = {}; + if (isGlobal != null) { + _queryParams['is_global'] = isGlobal.toString(); + } + if (threadLimit != null) { + _queryParams['thread_limit'] = threadLimit.toString(); + } + if (commentLimit != null) { + _queryParams['comment_limit'] = commentLimit.toString(); + } + const _response = yield core.fetcher({ + url: urlJoin( + (_a = yield core.Supplier.get(this._options.environment)) !== null && + _a !== void 0 + ? _a + : environments.CommonApiEnvironment.Default, + 'GetUserActivity', + ), + method: 'GET', + headers: Object.assign( + { + address: + (yield core.Supplier.get(this._options.address)) != null + ? yield core.Supplier.get(this._options.address) + : undefined, + 'X-Fern-Language': 'JavaScript', + 'X-Fern-Runtime': core.RUNTIME.type, + 'X-Fern-Runtime-Version': core.RUNTIME.version, + }, + yield this._getCustomAuthorizationHeaders(), + ), + contentType: 'application/json', + queryParameters: _queryParams, + requestType: 'json', + timeoutMs: + (requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.timeoutInSeconds) != null + ? requestOptions.timeoutInSeconds * 1000 + : 60000, + maxRetries: + requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.maxRetries, + abortSignal: + requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.abortSignal, + }); + if (_response.ok) { + return serializers.user.getUserActivity.Response.parseOrThrow( + _response.body, + { + unrecognizedObjectKeys: 'passthrough', + allowUnrecognizedUnionMembers: true, + allowUnrecognizedEnumValues: true, + breadcrumbsPrefix: ['response'], + }, + ); + } + if (_response.error.reason === 'status-code') { + throw new errors.CommonApiError({ + statusCode: _response.error.statusCode, + body: _response.error.body, + }); + } + switch (_response.error.reason) { + case 'non-json': + throw new errors.CommonApiError({ + statusCode: _response.error.statusCode, + body: _response.error.rawBody, + }); + case 'timeout': + throw new errors.CommonApiTimeoutError(); + case 'unknown': + throw new errors.CommonApiError({ + message: _response.error.errorMessage, + }); + } + }); + } + /** + * @param {User.RequestOptions} requestOptions - Request-specific configuration. + * + * @example + * await client.user.getNewContent() + */ + getNewContent(requestOptions) { + var _a; + return __awaiter(this, void 0, void 0, function* () { + const _response = yield core.fetcher({ + url: urlJoin( + (_a = yield core.Supplier.get(this._options.environment)) !== null && + _a !== void 0 + ? _a + : environments.CommonApiEnvironment.Default, + 'GetNewContent', + ), + method: 'GET', + headers: Object.assign( + { + address: + (yield core.Supplier.get(this._options.address)) != null + ? yield core.Supplier.get(this._options.address) + : undefined, + 'X-Fern-Language': 'JavaScript', + 'X-Fern-Runtime': core.RUNTIME.type, + 'X-Fern-Runtime-Version': core.RUNTIME.version, + }, + yield this._getCustomAuthorizationHeaders(), + ), + contentType: 'application/json', + requestType: 'json', + timeoutMs: + (requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.timeoutInSeconds) != null + ? requestOptions.timeoutInSeconds * 1000 + : 60000, + maxRetries: + requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.maxRetries, + abortSignal: + requestOptions === null || requestOptions === void 0 + ? void 0 + : requestOptions.abortSignal, + }); + if (_response.ok) { + return serializers.GetNewContentResponse.parseOrThrow(_response.body, { + unrecognizedObjectKeys: 'passthrough', + allowUnrecognizedUnionMembers: true, + allowUnrecognizedEnumValues: true, + breadcrumbsPrefix: ['response'], + }); + } + if (_response.error.reason === 'status-code') { + throw new errors.CommonApiError({ + statusCode: _response.error.statusCode, + body: _response.error.body, + }); + } + switch (_response.error.reason) { + case 'non-json': + throw new errors.CommonApiError({ + statusCode: _response.error.statusCode, + body: _response.error.rawBody, + }); + case 'timeout': + throw new errors.CommonApiTimeoutError(); + case 'unknown': + throw new errors.CommonApiError({ + message: _response.error.errorMessage, + }); + } + }); + } + _getCustomAuthorizationHeaders() { + return __awaiter(this, void 0, void 0, function* () { + const apiKeyValue = yield core.Supplier.get(this._options.apiKey); + return { 'x-api-key': apiKeyValue }; + }); + } +} diff --git a/libs/api-client/src/api/resources/user/client/index.d.ts b/libs/api-client/src/api/resources/user/client/index.d.ts new file mode 100644 index 00000000000..c3dff2f3f5c --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/index.d.ts @@ -0,0 +1 @@ +export * from './requests'; diff --git a/libs/api-client/src/api/resources/user/client/index.js b/libs/api-client/src/api/resources/user/client/index.js new file mode 100644 index 00000000000..c3dff2f3f5c --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/index.js @@ -0,0 +1 @@ +export * from './requests'; diff --git a/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.d.ts b/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.d.ts new file mode 100644 index 00000000000..8c94f764dcc --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.d.ts @@ -0,0 +1,12 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +/** + * @example + * {} + */ +export interface GetUserActivityRequest { + isGlobal?: boolean; + threadLimit?: number; + commentLimit?: number; +} diff --git a/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.js b/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/requests/GetUserActivityRequest.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/client/requests/index.d.ts b/libs/api-client/src/api/resources/user/client/requests/index.d.ts new file mode 100644 index 00000000000..fa13dcaf02a --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/requests/index.d.ts @@ -0,0 +1 @@ +export { type GetUserActivityRequest } from './GetUserActivityRequest'; diff --git a/libs/api-client/src/api/resources/user/client/requests/index.js b/libs/api-client/src/api/resources/user/client/requests/index.js new file mode 100644 index 00000000000..cb0ff5c3b54 --- /dev/null +++ b/libs/api-client/src/api/resources/user/client/requests/index.js @@ -0,0 +1 @@ +export {}; diff --git a/libs/api-client/src/api/resources/user/index.d.ts b/libs/api-client/src/api/resources/user/index.d.ts new file mode 100644 index 00000000000..d860d0670db --- /dev/null +++ b/libs/api-client/src/api/resources/user/index.d.ts @@ -0,0 +1,2 @@ +export * from './client'; +export * from './types'; diff --git a/libs/api-client/src/api/resources/user/index.js b/libs/api-client/src/api/resources/user/index.js new file mode 100644 index 00000000000..d860d0670db --- /dev/null +++ b/libs/api-client/src/api/resources/user/index.js @@ -0,0 +1,2 @@ +export * from './client'; +export * from './types'; diff --git a/libs/api-client/src/api/resources/user/types/GetNewContentResponse.d.ts b/libs/api-client/src/api/resources/user/types/GetNewContentResponse.d.ts new file mode 100644 index 00000000000..bff3be0dd4b --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetNewContentResponse.d.ts @@ -0,0 +1,6 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetNewContentResponse { + joinedCommunityIdsWithNewContent: string[]; +} diff --git a/libs/api-client/src/api/resources/user/types/GetNewContentResponse.js b/libs/api-client/src/api/resources/user/types/GetNewContentResponse.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetNewContentResponse.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.d.ts new file mode 100644 index 00000000000..708b74ea636 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.d.ts @@ -0,0 +1,29 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../index'; +export interface GetUserActivityResponseItem { + communityId: string; + communityIcon?: string; + id: number; + userId: number; + userAddress: string; + profileName?: string; + profileAvatar?: string; + body: string; + title: string; + kind: string; + stage: string; + numberOfComments: number; + createdAt?: string; + updatedAt?: string; + deletedAt?: string; + lockedAt?: string; + archivedAt?: string; + markedAsSpamAt?: string; + readOnly: boolean; + hasPoll?: boolean; + discordMeta?: CommonApi.GetUserActivityResponseItemDiscordMeta; + topic: CommonApi.GetUserActivityResponseItemTopic; + recentComments?: CommonApi.GetUserActivityResponseItemRecentCommentsItem[]; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItem.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts new file mode 100644 index 00000000000..867ff4ae95b --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../index'; +export interface GetUserActivityResponseItemDiscordMeta { + user: CommonApi.GetUserActivityResponseItemDiscordMetaUser; + channelId: string; + messageId: string; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMeta.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts new file mode 100644 index 00000000000..e55398eee22 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts @@ -0,0 +1,7 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetUserActivityResponseItemDiscordMetaUser { + id: string; + username: string; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts new file mode 100644 index 00000000000..c721a34d0c1 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts @@ -0,0 +1,17 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../index'; +export interface GetUserActivityResponseItemRecentCommentsItem { + id: number; + address: string; + userId?: number; + profileName?: string; + profileAvatar?: string; + text: string; + createdAt: string; + updatedAt?: string; + deletedAt?: string; + markedAsSpamAt?: string; + discordMeta?: CommonApi.GetUserActivityResponseItemRecentCommentsItemDiscordMeta; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts new file mode 100644 index 00000000000..616a432e90b --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../index'; +export interface GetUserActivityResponseItemRecentCommentsItemDiscordMeta { + user: CommonApi.GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser; + channelId: string; + messageId: string; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts new file mode 100644 index 00000000000..9c306100bf5 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts @@ -0,0 +1,7 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser { + id: string; + username: string; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.d.ts b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.d.ts new file mode 100644 index 00000000000..12290cb3b66 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.d.ts @@ -0,0 +1,8 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export interface GetUserActivityResponseItemTopic { + id: number; + name: string; + description: string; +} diff --git a/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.js b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.js new file mode 100644 index 00000000000..0b46289f5b8 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/GetUserActivityResponseItemTopic.js @@ -0,0 +1,4 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +export {}; diff --git a/libs/api-client/src/api/resources/user/types/index.d.ts b/libs/api-client/src/api/resources/user/types/index.d.ts new file mode 100644 index 00000000000..150b153c887 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/index.d.ts @@ -0,0 +1,8 @@ +export * from './GetNewContentResponse'; +export * from './GetUserActivityResponseItem'; +export * from './GetUserActivityResponseItemDiscordMeta'; +export * from './GetUserActivityResponseItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemRecentCommentsItem'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemTopic'; diff --git a/libs/api-client/src/api/resources/user/types/index.js b/libs/api-client/src/api/resources/user/types/index.js new file mode 100644 index 00000000000..150b153c887 --- /dev/null +++ b/libs/api-client/src/api/resources/user/types/index.js @@ -0,0 +1,8 @@ +export * from './GetNewContentResponse'; +export * from './GetUserActivityResponseItem'; +export * from './GetUserActivityResponseItemDiscordMeta'; +export * from './GetUserActivityResponseItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemRecentCommentsItem'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemTopic'; diff --git a/libs/api-client/src/core/fetcher/APIResponse.d.ts b/libs/api-client/src/core/fetcher/APIResponse.d.ts index d5cf6970b8f..aae27360004 100644 --- a/libs/api-client/src/core/fetcher/APIResponse.d.ts +++ b/libs/api-client/src/core/fetcher/APIResponse.d.ts @@ -1,13 +1,11 @@ export declare type APIResponse = | SuccessfulResponse | FailedResponse; - export interface SuccessfulResponse { ok: true; body: T; headers?: Record; } - export interface FailedResponse { ok: false; error: T; diff --git a/libs/api-client/src/core/fetcher/Fetcher.d.ts b/libs/api-client/src/core/fetcher/Fetcher.d.ts index 516fabb9763..5366b52a7dc 100644 --- a/libs/api-client/src/core/fetcher/Fetcher.d.ts +++ b/libs/api-client/src/core/fetcher/Fetcher.d.ts @@ -1,5 +1,4 @@ import { APIResponse } from './APIResponse'; - export declare type FetchFunction = ( args: Fetcher.Args, ) => Promise>; @@ -19,37 +18,30 @@ export declare namespace Fetcher { responseType?: 'json' | 'blob' | 'sse' | 'streaming' | 'text'; duplex?: 'half'; } - type Error = | FailedStatusCodeError | NonJsonError | TimeoutError | UnknownError; - interface FailedStatusCodeError { reason: 'status-code'; statusCode: number; body: unknown; } - interface NonJsonError { reason: 'non-json'; statusCode: number; rawBody: string; } - interface TimeoutError { reason: 'timeout'; } - interface UnknownError { reason: 'unknown'; errorMessage: string; } } - export declare function fetcherImpl( args: Fetcher.Args, ): Promise>; - export declare const fetcher: FetchFunction; diff --git a/libs/api-client/src/core/fetcher/Fetcher.js b/libs/api-client/src/core/fetcher/Fetcher.js index 0742c5b1a08..169a756f59b 100644 --- a/libs/api-client/src/core/fetcher/Fetcher.js +++ b/libs/api-client/src/core/fetcher/Fetcher.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,13 +23,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -41,7 +37,6 @@ import { getRequestBody } from './getRequestBody'; import { getResponseBody } from './getResponseBody'; import { makeRequest } from './makeRequest'; import { requestWithRetries } from './requestWithRetries'; - export function fetcherImpl(args) { return __awaiter(this, void 0, void 0, function* () { const headers = {}; @@ -131,5 +126,4 @@ export function fetcherImpl(args) { } }); } - export const fetcher = fetcherImpl; diff --git a/libs/api-client/src/core/fetcher/Supplier.js b/libs/api-client/src/core/fetcher/Supplier.js index 84f494599a9..e12e42a8392 100644 --- a/libs/api-client/src/core/fetcher/Supplier.js +++ b/libs/api-client/src/core/fetcher/Supplier.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,13 +23,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; diff --git a/libs/api-client/src/core/fetcher/createRequestUrl.js b/libs/api-client/src/core/fetcher/createRequestUrl.js index 97ed3c875b9..94ab4b347dd 100644 --- a/libs/api-client/src/core/fetcher/createRequestUrl.js +++ b/libs/api-client/src/core/fetcher/createRequestUrl.js @@ -1,5 +1,4 @@ import qs from 'qs'; - export function createRequestUrl(baseUrl, queryParameters) { return Object.keys( queryParameters !== null && queryParameters !== void 0 diff --git a/libs/api-client/src/core/fetcher/getFetchFn.js b/libs/api-client/src/core/fetcher/getFetchFn.js index bbf9276b08c..513e1e69c6e 100644 --- a/libs/api-client/src/core/fetcher/getFetchFn.js +++ b/libs/api-client/src/core/fetcher/getFetchFn.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,18 +23,15 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { RUNTIME } from '../runtime'; - /** * Returns a fetch function based on the runtime */ diff --git a/libs/api-client/src/core/fetcher/getRequestBody.d.ts b/libs/api-client/src/core/fetcher/getRequestBody.d.ts index 3d681ae1014..fb635c578af 100644 --- a/libs/api-client/src/core/fetcher/getRequestBody.d.ts +++ b/libs/api-client/src/core/fetcher/getRequestBody.d.ts @@ -4,7 +4,6 @@ export declare namespace GetRequestBody { type: 'json' | 'file' | 'bytes' | 'other'; } } - export declare function getRequestBody({ body, type, diff --git a/libs/api-client/src/core/fetcher/getRequestBody.js b/libs/api-client/src/core/fetcher/getRequestBody.js index b9323a13912..c53709f3637 100644 --- a/libs/api-client/src/core/fetcher/getRequestBody.js +++ b/libs/api-client/src/core/fetcher/getRequestBody.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,17 +23,14 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; - export function getRequestBody({ body, type }) { return __awaiter(this, void 0, void 0, function* () { if (type.includes('json')) { diff --git a/libs/api-client/src/core/fetcher/getResponseBody.js b/libs/api-client/src/core/fetcher/getResponseBody.js index 8c0677d8bd5..797d874475c 100644 --- a/libs/api-client/src/core/fetcher/getResponseBody.js +++ b/libs/api-client/src/core/fetcher/getResponseBody.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,18 +23,15 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { chooseStreamWrapper } from './stream-wrappers/chooseStreamWrapper'; - export function getResponseBody(response, responseType) { return __awaiter(this, void 0, void 0, function* () { if (response.body != null && responseType === 'blob') { diff --git a/libs/api-client/src/core/fetcher/makeRequest.js b/libs/api-client/src/core/fetcher/makeRequest.js index 0e0b0ab9bf1..96292a162fe 100644 --- a/libs/api-client/src/core/fetcher/makeRequest.js +++ b/libs/api-client/src/core/fetcher/makeRequest.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,18 +23,15 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { anySignal, getTimeoutSignal } from './signals'; - export const makeRequest = ( fetchFn, url, diff --git a/libs/api-client/src/core/fetcher/requestWithRetries.js b/libs/api-client/src/core/fetcher/requestWithRetries.js index b27e3c31deb..296c2899f06 100644 --- a/libs/api-client/src/core/fetcher/requestWithRetries.js +++ b/libs/api-client/src/core/fetcher/requestWithRetries.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,20 +23,17 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; const INITIAL_RETRY_DELAY = 1; const MAX_RETRY_DELAY = 60; const DEFAULT_MAX_RETRIES = 2; - export function requestWithRetries( requestFn, maxRetries = DEFAULT_MAX_RETRIES, diff --git a/libs/api-client/src/core/fetcher/signals.d.ts b/libs/api-client/src/core/fetcher/signals.d.ts index 384f03c5f42..8bb15df3a27 100644 --- a/libs/api-client/src/core/fetcher/signals.d.ts +++ b/libs/api-client/src/core/fetcher/signals.d.ts @@ -3,7 +3,6 @@ export declare function getTimeoutSignal(timeoutMs: number): { signal: AbortSignal; abortId: NodeJS.Timeout; }; - /** * Returns an abort signal that is getting aborted when * at least one of the specified abort signals is aborted. diff --git a/libs/api-client/src/core/fetcher/signals.js b/libs/api-client/src/core/fetcher/signals.js index c920d2a408d..1e8a43e29cf 100644 --- a/libs/api-client/src/core/fetcher/signals.js +++ b/libs/api-client/src/core/fetcher/signals.js @@ -1,11 +1,9 @@ const TIMEOUT = 'timeout'; - export function getTimeoutSignal(timeoutMs) { const controller = new AbortController(); const abortId = setTimeout(() => controller.abort(TIMEOUT), timeoutMs); return { signal: controller.signal, abortId }; } - /** * Returns an abort signal that is getting aborted when * at least one of the specified abort signals is aborted. diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts b/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts index 1d761d21d56..2ec22226b70 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +++ b/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts @@ -1,7 +1,6 @@ /// import type { Writable } from 'stream'; import { EventCallback, StreamWrapper } from './chooseStreamWrapper'; - export declare class Node18UniversalStreamWrapper< ReadFormat extends Uint8Array | Uint16Array | Uint32Array, > implements @@ -18,13 +17,9 @@ export declare class Node18UniversalStreamWrapper< private paused; private resumeCallback; private encoding; - constructor(readableStream: ReadableStream); - on(event: string, callback: EventCallback): void; - off(event: string, callback: EventCallback): void; - pipe( dest: | Node18UniversalStreamWrapper @@ -34,7 +29,6 @@ export declare class Node18UniversalStreamWrapper< | Node18UniversalStreamWrapper | Writable | WritableStream; - pipeTo( dest: | Node18UniversalStreamWrapper @@ -44,35 +38,24 @@ export declare class Node18UniversalStreamWrapper< | Node18UniversalStreamWrapper | Writable | WritableStream; - unpipe( dest: | Node18UniversalStreamWrapper | Writable | WritableStream, ): void; - destroy(error?: Error): void; - pause(): void; - resume(): void; - get isPaused(): boolean; - read(): Promise; - setEncoding(encoding: string): void; - text(): Promise; - json(): Promise; - private _write; private _end; private _error; private _emit; private _startReading; - [Symbol.asyncIterator](): AsyncIterableIterator; } diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js b/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js index d3d6f330179..0bf9f8cc2af 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +++ b/libs/api-client/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,17 +23,14 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; - export class Node18UniversalStreamWrapper { constructor(readableStream) { this.readableStream = readableStream; @@ -53,14 +48,12 @@ export class Node18UniversalStreamWrapper { this.resumeCallback = null; this.encoding = null; } - on(event, callback) { var _a; (_a = this.events[event]) === null || _a === void 0 ? void 0 : _a.push(callback); } - off(event, callback) { var _a; this.events[event] = @@ -68,7 +61,6 @@ export class Node18UniversalStreamWrapper { ? void 0 : _a.filter((cb) => cb !== callback); } - pipe(dest) { this.on('data', (chunk) => __awaiter(this, void 0, void 0, function* () { @@ -109,11 +101,9 @@ export class Node18UniversalStreamWrapper { this._startReading(); return dest; } - pipeTo(dest) { return this.pipe(dest); } - unpipe(dest) { this.off('data', (chunk) => __awaiter(this, void 0, void 0, function* () { @@ -152,7 +142,6 @@ export class Node18UniversalStreamWrapper { }), ); } - destroy(error) { this.reader .cancel(error) @@ -163,12 +152,10 @@ export class Node18UniversalStreamWrapper { this._emit('error', err); }); } - pause() { this.paused = true; this._emit('pause'); } - resume() { if (this.paused) { this.paused = false; @@ -179,11 +166,9 @@ export class Node18UniversalStreamWrapper { } } } - get isPaused() { return this.paused; } - read() { return __awaiter(this, void 0, void 0, function* () { if (this.paused) { @@ -198,11 +183,9 @@ export class Node18UniversalStreamWrapper { return value; }); } - setEncoding(encoding) { this.encoding = encoding; } - text() { return __awaiter(this, void 0, void 0, function* () { const chunks = []; @@ -215,26 +198,21 @@ export class Node18UniversalStreamWrapper { return decoder.decode(yield new Blob(chunks).arrayBuffer()); }); } - json() { return __awaiter(this, void 0, void 0, function* () { const text = yield this.text(); return JSON.parse(text); }); } - _write(chunk) { this._emit('data', chunk); } - _end() { this._emit('end'); } - _error(error) { this._emit('error', error); } - _emit(event, data) { if (this.events[event]) { for (const callback of this.events[event] || []) { @@ -242,7 +220,6 @@ export class Node18UniversalStreamWrapper { } } } - _startReading() { return __awaiter(this, void 0, void 0, function* () { try { @@ -268,7 +245,6 @@ export class Node18UniversalStreamWrapper { } }); } - [Symbol.asyncIterator]() { return { next: () => diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts b/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts index 3d4b5118d06..414db353cfc 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +++ b/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts @@ -1,40 +1,24 @@ /// import type { Readable, Writable } from 'stream'; import { EventCallback, StreamWrapper } from './chooseStreamWrapper'; - export declare class NodePre18StreamWrapper implements StreamWrapper { private readableStream; private encoding; - constructor(readableStream: Readable); - on(event: string, callback: EventCallback): void; - off(event: string, callback: EventCallback): void; - pipe(dest: Writable): Writable; - pipeTo(dest: Writable): Writable; - unpipe(dest?: Writable): void; - destroy(error?: Error): void; - pause(): void; - resume(): void; - get isPaused(): boolean; - read(): Promise; - setEncoding(encoding?: string): void; - text(): Promise; - json(): Promise; - [Symbol.asyncIterator](): AsyncIterableIterator; } diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js b/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js index 917355c5683..64c7ae9616a 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +++ b/libs/api-client/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,13 +23,11 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; @@ -54,7 +50,6 @@ var __asyncValues = return this; }), i); - function verb(n) { i[n] = o[n] && @@ -64,36 +59,29 @@ var __asyncValues = }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); } }; - export class NodePre18StreamWrapper { constructor(readableStream) { this.readableStream = readableStream; } - on(event, callback) { this.readableStream.on(event, callback); } - off(event, callback) { this.readableStream.off(event, callback); } - pipe(dest) { this.readableStream.pipe(dest); return dest; } - pipeTo(dest) { return this.pipe(dest); } - unpipe(dest) { if (dest) { this.readableStream.unpipe(dest); @@ -101,23 +89,18 @@ export class NodePre18StreamWrapper { this.readableStream.unpipe(); } } - destroy(error) { this.readableStream.destroy(error); } - pause() { this.readableStream.pause(); } - resume() { this.readableStream.resume(); } - get isPaused() { return this.readableStream.isPaused(); } - read() { return __awaiter(this, void 0, void 0, function* () { return new Promise((resolve, reject) => { @@ -134,12 +117,10 @@ export class NodePre18StreamWrapper { }); }); } - setEncoding(encoding) { this.readableStream.setEncoding(encoding); this.encoding = encoding; } - text() { var e_1, _a; return __awaiter(this, void 0, void 0, function* () { @@ -168,14 +149,12 @@ export class NodePre18StreamWrapper { return decoder.decode(Buffer.concat(chunks)); }); } - json() { return __awaiter(this, void 0, void 0, function* () { const text = yield this.text(); return JSON.parse(text); }); } - [Symbol.asyncIterator]() { const readableStream = this.readableStream; const iterator = readableStream[Symbol.asyncIterator](); diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts b/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts index af139fd1eeb..9e0bf4d9dc9 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +++ b/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts @@ -1,7 +1,5 @@ import { StreamWrapper } from './chooseStreamWrapper'; - declare type EventCallback = (data?: any) => void; - export declare class UndiciStreamWrapper< ReadFormat extends Uint8Array | Uint16Array | Uint32Array, > implements @@ -16,46 +14,29 @@ export declare class UndiciStreamWrapper< private paused; private resumeCallback; private encoding; - constructor(readableStream: ReadableStream); - on(event: string, callback: EventCallback): void; - off(event: string, callback: EventCallback): void; - pipe( dest: UndiciStreamWrapper | WritableStream, ): UndiciStreamWrapper | WritableStream; - pipeTo( dest: UndiciStreamWrapper | WritableStream, ): UndiciStreamWrapper | WritableStream; - unpipe(dest: UndiciStreamWrapper | WritableStream): void; - destroy(error?: Error): void; - pause(): void; - resume(): void; - get isPaused(): boolean; - read(): Promise; - setEncoding(encoding: string): void; - text(): Promise; - json(): Promise; - private _write; private _end; private _error; private _emit; private _startReading; - [Symbol.asyncIterator](): AsyncIterableIterator; } - export {}; diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.js b/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.js index baf90c48e13..87ef9a04889 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +++ b/libs/api-client/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,17 +23,14 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; - export class UndiciStreamWrapper { constructor(readableStream) { this.readableStream = readableStream; @@ -53,14 +48,12 @@ export class UndiciStreamWrapper { this.resumeCallback = null; this.encoding = null; } - on(event, callback) { var _a; (_a = this.events[event]) === null || _a === void 0 ? void 0 : _a.push(callback); } - off(event, callback) { var _a; this.events[event] = @@ -68,7 +61,6 @@ export class UndiciStreamWrapper { ? void 0 : _a.filter((cb) => cb !== callback); } - pipe(dest) { this.on('data', (chunk) => { if (dest instanceof UndiciStreamWrapper) { @@ -97,11 +89,9 @@ export class UndiciStreamWrapper { this._startReading(); return dest; } - pipeTo(dest) { return this.pipe(dest); } - unpipe(dest) { this.off('data', (chunk) => { if (dest instanceof UndiciStreamWrapper) { @@ -128,7 +118,6 @@ export class UndiciStreamWrapper { } }); } - destroy(error) { this.reader .cancel(error) @@ -139,12 +128,10 @@ export class UndiciStreamWrapper { this._emit('error', err); }); } - pause() { this.paused = true; this._emit('pause'); } - resume() { if (this.paused) { this.paused = false; @@ -155,11 +142,9 @@ export class UndiciStreamWrapper { } } } - get isPaused() { return this.paused; } - read() { return __awaiter(this, void 0, void 0, function* () { if (this.paused) { @@ -174,11 +159,9 @@ export class UndiciStreamWrapper { return value; }); } - setEncoding(encoding) { this.encoding = encoding; } - text() { return __awaiter(this, void 0, void 0, function* () { const chunks = []; @@ -191,26 +174,21 @@ export class UndiciStreamWrapper { return decoder.decode(yield new Blob(chunks).arrayBuffer()); }); } - json() { return __awaiter(this, void 0, void 0, function* () { const text = yield this.text(); return JSON.parse(text); }); } - _write(chunk) { this._emit('data', chunk); } - _end() { this._emit('end'); } - _error(error) { this._emit('error', error); } - _emit(event, data) { if (this.events[event]) { for (const callback of this.events[event] || []) { @@ -218,7 +196,6 @@ export class UndiciStreamWrapper { } } } - _startReading() { return __awaiter(this, void 0, void 0, function* () { try { @@ -244,7 +221,6 @@ export class UndiciStreamWrapper { } }); } - [Symbol.asyncIterator]() { return { next: () => diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts b/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts index e3f98f40f1c..702261c87d5 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +++ b/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts @@ -1,35 +1,20 @@ export declare type EventCallback = (data?: any) => void; - export interface StreamWrapper { setEncoding(encoding?: string): void; - on(event: string, callback: EventCallback): void; - off(event: string, callback: EventCallback): void; - pipe(dest: WritableStream): WritableStream; - pipeTo(dest: WritableStream): WritableStream; - unpipe(dest?: WritableStream): void; - destroy(error?: Error): void; - pause(): void; - resume(): void; - get isPaused(): boolean; - read(): Promise; - text(): Promise; - json(): Promise; - [Symbol.asyncIterator](): AsyncIterableIterator; } - export declare function chooseStreamWrapper( responseBody: any, ): Promise>>; diff --git a/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.js b/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.js index 2e44cb01d86..f42ff901dea 100644 --- a/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.js +++ b/libs/api-client/src/core/fetcher/stream-wrappers/chooseStreamWrapper.js @@ -8,7 +8,6 @@ var __awaiter = resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { @@ -17,7 +16,6 @@ var __awaiter = reject(e); } } - function rejected(value) { try { step(generator['throw'](value)); @@ -25,18 +23,15 @@ var __awaiter = reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { RUNTIME } from '../../runtime'; - export function chooseStreamWrapper(responseBody) { return __awaiter(this, void 0, void 0, function* () { if ( diff --git a/libs/api-client/src/core/runtime/runtime.d.ts b/libs/api-client/src/core/runtime/runtime.d.ts index 4b25c356808..baea1726df4 100644 --- a/libs/api-client/src/core/runtime/runtime.d.ts +++ b/libs/api-client/src/core/runtime/runtime.d.ts @@ -2,7 +2,6 @@ * A constant that indicates which environment and version the SDK is running in. */ export declare const RUNTIME: Runtime; - export interface Runtime { type: | 'browser' diff --git a/libs/api-client/src/core/runtime/runtime.js b/libs/api-client/src/core/runtime/runtime.js index e60d146f7ca..54e52f707c0 100644 --- a/libs/api-client/src/core/runtime/runtime.js +++ b/libs/api-client/src/core/runtime/runtime.js @@ -65,7 +65,6 @@ const isCloudflare = * A constant that indicates which environment and version the SDK is running in. */ export const RUNTIME = evaluateRuntime(); - function evaluateRuntime() { if (isBrowser) { return { diff --git a/libs/api-client/src/core/schemas/Schema.d.ts b/libs/api-client/src/core/schemas/Schema.d.ts index cdb27cf7c20..dd04024af3d 100644 --- a/libs/api-client/src/core/schemas/Schema.d.ts +++ b/libs/api-client/src/core/schemas/Schema.d.ts @@ -1,5 +1,4 @@ import { SchemaUtils } from './builders'; - export declare type Schema = BaseSchema< Raw, Parsed @@ -9,13 +8,11 @@ export declare type inferRaw = S extends Schema ? Raw : never; export declare type inferParsed = S extends Schema ? Parsed : never; - export interface BaseSchema { parse: (raw: unknown, opts?: SchemaOptions) => MaybeValid; json: (parsed: unknown, opts?: SchemaOptions) => MaybeValid; getType: () => SchemaType | SchemaType; } - export declare const SchemaType: { readonly DATE: 'date'; readonly ENUM: 'enum'; @@ -36,22 +33,18 @@ export declare const SchemaType: { }; export declare type SchemaType = (typeof SchemaType)[keyof typeof SchemaType]; export declare type MaybeValid = Valid | Invalid; - export interface Valid { ok: true; value: T; } - export interface Invalid { ok: false; errors: ValidationError[]; } - export interface ValidationError { path: string[]; message: string; } - export interface SchemaOptions { /** * how to handle unrecognized keys in objects diff --git a/libs/api-client/src/core/schemas/builders/date/date.d.ts b/libs/api-client/src/core/schemas/builders/date/date.d.ts index 41865f10573..f7da04f607d 100644 --- a/libs/api-client/src/core/schemas/builders/date/date.d.ts +++ b/libs/api-client/src/core/schemas/builders/date/date.d.ts @@ -1,3 +1,2 @@ import { Schema } from '../../Schema'; - export declare function date(): Schema; diff --git a/libs/api-client/src/core/schemas/builders/date/date.js b/libs/api-client/src/core/schemas/builders/date/date.js index 8dd36c56927..b0d41593e72 100644 --- a/libs/api-client/src/core/schemas/builders/date/date.js +++ b/libs/api-client/src/core/schemas/builders/date/date.js @@ -5,7 +5,6 @@ import { getSchemaUtils } from '../schema-utils'; // https://stackoverflow.com/questions/12756159/regex-and-iso8601-formatted-datetime const ISO_8601_REGEX = /^([+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([.,]\d+(?!:))?)?(\17[0-5]\d([.,]\d+)?)?([zZ]|([+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/; - export function date() { const baseSchema = { parse: (raw, { breadcrumbsPrefix = [] } = {}) => { diff --git a/libs/api-client/src/core/schemas/builders/enum/enum.d.ts b/libs/api-client/src/core/schemas/builders/enum/enum.d.ts index 2504688611a..5d8aa2521d3 100644 --- a/libs/api-client/src/core/schemas/builders/enum/enum.d.ts +++ b/libs/api-client/src/core/schemas/builders/enum/enum.d.ts @@ -1,5 +1,4 @@ import { Schema } from '../../Schema'; - export declare function enum_( values: E, ): Schema; diff --git a/libs/api-client/src/core/schemas/builders/enum/enum.js b/libs/api-client/src/core/schemas/builders/enum/enum.js index f5f87bd9fd8..6bddb310a18 100644 --- a/libs/api-client/src/core/schemas/builders/enum/enum.js +++ b/libs/api-client/src/core/schemas/builders/enum/enum.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export function enum_(values) { const validValues = new Set(values); const schemaCreator = createIdentitySchemaCreator( diff --git a/libs/api-client/src/core/schemas/builders/lazy/lazy.d.ts b/libs/api-client/src/core/schemas/builders/lazy/lazy.d.ts index 77f10279964..c907e5a3be2 100644 --- a/libs/api-client/src/core/schemas/builders/lazy/lazy.d.ts +++ b/libs/api-client/src/core/schemas/builders/lazy/lazy.d.ts @@ -1,16 +1,12 @@ import { BaseSchema, Schema } from '../../Schema'; - export declare type SchemaGetter> = () => SchemaType; - export declare function lazy( getter: SchemaGetter>, ): Schema; - export declare function constructLazyBaseSchema( getter: SchemaGetter>, ): BaseSchema; - export declare function getMemoizedSchema>( getter: SchemaGetter, ): SchemaType; diff --git a/libs/api-client/src/core/schemas/builders/lazy/lazy.js b/libs/api-client/src/core/schemas/builders/lazy/lazy.js index f73e7a3a0ec..d63717436fe 100644 --- a/libs/api-client/src/core/schemas/builders/lazy/lazy.js +++ b/libs/api-client/src/core/schemas/builders/lazy/lazy.js @@ -1,5 +1,4 @@ import { getSchemaUtils } from '../schema-utils'; - export function lazy(getter) { const baseSchema = constructLazyBaseSchema(getter); return Object.assign( @@ -7,7 +6,6 @@ export function lazy(getter) { getSchemaUtils(baseSchema), ); } - export function constructLazyBaseSchema(getter) { return { parse: (raw, opts) => getMemoizedSchema(getter).parse(raw, opts), @@ -15,7 +13,6 @@ export function constructLazyBaseSchema(getter) { getType: () => getMemoizedSchema(getter).getType(), }; } - export function getMemoizedSchema(getter) { const castedGetter = getter; if (castedGetter.__zurg_memoized == null) { diff --git a/libs/api-client/src/core/schemas/builders/lazy/lazyObject.d.ts b/libs/api-client/src/core/schemas/builders/lazy/lazyObject.d.ts index 595114661b8..5df3d5d964a 100644 --- a/libs/api-client/src/core/schemas/builders/lazy/lazyObject.d.ts +++ b/libs/api-client/src/core/schemas/builders/lazy/lazyObject.d.ts @@ -1,6 +1,5 @@ import { ObjectSchema } from '../object/types'; import { SchemaGetter } from './lazy'; - export declare function lazyObject( getter: SchemaGetter>, ): ObjectSchema; diff --git a/libs/api-client/src/core/schemas/builders/lazy/lazyObject.js b/libs/api-client/src/core/schemas/builders/lazy/lazyObject.js index 803c249a5df..a682008c426 100644 --- a/libs/api-client/src/core/schemas/builders/lazy/lazyObject.js +++ b/libs/api-client/src/core/schemas/builders/lazy/lazyObject.js @@ -2,7 +2,6 @@ import { getObjectUtils } from '../object'; import { getObjectLikeUtils } from '../object-like'; import { getSchemaUtils } from '../schema-utils'; import { constructLazyBaseSchema, getMemoizedSchema } from './lazy'; - export function lazyObject(getter) { const baseSchema = Object.assign( Object.assign({}, constructLazyBaseSchema(getter)), diff --git a/libs/api-client/src/core/schemas/builders/list/list.d.ts b/libs/api-client/src/core/schemas/builders/list/list.d.ts index d89be3f353b..2812eefb982 100644 --- a/libs/api-client/src/core/schemas/builders/list/list.d.ts +++ b/libs/api-client/src/core/schemas/builders/list/list.d.ts @@ -1,5 +1,4 @@ import { Schema } from '../../Schema'; - export declare function list( schema: Schema, ): Schema; diff --git a/libs/api-client/src/core/schemas/builders/list/list.js b/libs/api-client/src/core/schemas/builders/list/list.js index 56c31e89260..61812c72ac9 100644 --- a/libs/api-client/src/core/schemas/builders/list/list.js +++ b/libs/api-client/src/core/schemas/builders/list/list.js @@ -2,7 +2,6 @@ import { SchemaType } from '../../Schema'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; import { maybeSkipValidation } from '../../utils/maybeSkipValidation'; import { getSchemaUtils } from '../schema-utils'; - export function list(schema) { const baseSchema = { parse: (raw, opts) => @@ -48,7 +47,6 @@ export function list(schema) { getSchemaUtils(baseSchema), ); } - function validateAndTransformArray(value, transformItem) { if (!Array.isArray(value)) { return { diff --git a/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.d.ts b/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.d.ts index 513867ef59d..ab1bc501c24 100644 --- a/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.d.ts +++ b/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.d.ts @@ -1,5 +1,4 @@ import { Schema } from '../../Schema'; - export declare function booleanLiteral( literal: V, ): Schema; diff --git a/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.js b/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.js index 9e5f3a8ce07..9b5f386d3f7 100644 --- a/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.js +++ b/libs/api-client/src/core/schemas/builders/literals/booleanLiteral.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export function booleanLiteral(literal) { const schemaCreator = createIdentitySchemaCreator( SchemaType.BOOLEAN_LITERAL, diff --git a/libs/api-client/src/core/schemas/builders/literals/stringLiteral.d.ts b/libs/api-client/src/core/schemas/builders/literals/stringLiteral.d.ts index a8558be7839..e8dc74ec1a1 100644 --- a/libs/api-client/src/core/schemas/builders/literals/stringLiteral.d.ts +++ b/libs/api-client/src/core/schemas/builders/literals/stringLiteral.d.ts @@ -1,5 +1,4 @@ import { Schema } from '../../Schema'; - export declare function stringLiteral( literal: V, ): Schema; diff --git a/libs/api-client/src/core/schemas/builders/literals/stringLiteral.js b/libs/api-client/src/core/schemas/builders/literals/stringLiteral.js index 9df4f93b646..ada0cc908f8 100644 --- a/libs/api-client/src/core/schemas/builders/literals/stringLiteral.js +++ b/libs/api-client/src/core/schemas/builders/literals/stringLiteral.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export function stringLiteral(literal) { const schemaCreator = createIdentitySchemaCreator( SchemaType.STRING_LITERAL, diff --git a/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.d.ts b/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.d.ts index d09479aff97..047545ce9bf 100644 --- a/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.d.ts +++ b/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.d.ts @@ -1,10 +1,8 @@ import { BaseSchema } from '../../Schema'; import { ObjectLikeSchema, ObjectLikeUtils } from './types'; - export declare function getObjectLikeUtils( schema: BaseSchema, ): ObjectLikeUtils; - /** * object-like utils are defined in one file to resolve issues with circular imports */ diff --git a/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.js b/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.js index dbe3c94356e..d378675405f 100644 --- a/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.js +++ b/libs/api-client/src/core/schemas/builders/object-like/getObjectLikeUtils.js @@ -2,14 +2,12 @@ import { filterObject } from '../../utils/filterObject'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; import { isPlainObject } from '../../utils/isPlainObject'; import { getSchemaUtils } from '../schema-utils'; - export function getObjectLikeUtils(schema) { return { withParsedProperties: (properties) => withParsedProperties(schema, properties), }; } - /** * object-like utils are defined in one file to resolve issues with circular imports */ diff --git a/libs/api-client/src/core/schemas/builders/object-like/types.d.ts b/libs/api-client/src/core/schemas/builders/object-like/types.d.ts index 85319841a72..c61cd0a9763 100644 --- a/libs/api-client/src/core/schemas/builders/object-like/types.d.ts +++ b/libs/api-client/src/core/schemas/builders/object-like/types.d.ts @@ -1,9 +1,7 @@ import { BaseSchema, Schema } from '../../Schema'; - export declare type ObjectLikeSchema = Schema & BaseSchema & ObjectLikeUtils; - export interface ObjectLikeUtils { withParsedProperties: >(properties: { [K in keyof T]: T[K] | ((parsed: Parsed) => T[K]); diff --git a/libs/api-client/src/core/schemas/builders/object/object.d.ts b/libs/api-client/src/core/schemas/builders/object/object.d.ts index 57736ed5900..b8996cc0821 100644 --- a/libs/api-client/src/core/schemas/builders/object/object.d.ts +++ b/libs/api-client/src/core/schemas/builders/object/object.d.ts @@ -4,12 +4,10 @@ import { ObjectUtils, PropertySchemas, } from './types'; - export declare function object< ParsedKeys extends string, T extends PropertySchemas, >(schemas: T): inferObjectSchemaFromPropertySchemas; - export declare function getObjectUtils( schema: BaseObjectSchema, ): ObjectUtils; diff --git a/libs/api-client/src/core/schemas/builders/object/object.js b/libs/api-client/src/core/schemas/builders/object/object.js index 8c4b874f78b..4ec584f7e53 100644 --- a/libs/api-client/src/core/schemas/builders/object/object.js +++ b/libs/api-client/src/core/schemas/builders/object/object.js @@ -9,7 +9,6 @@ import { partition } from '../../utils/partition'; import { getObjectLikeUtils } from '../object-like'; import { getSchemaUtils } from '../schema-utils'; import { isProperty } from './property'; - export function object(schemas) { const baseSchema = { _getRawProperties: () => @@ -166,7 +165,6 @@ export function object(schemas) { getObjectUtils(baseSchema), ); } - function validateAndTransformObject({ value, requiredKeys, @@ -238,7 +236,6 @@ function validateAndTransformObject({ }; } } - export function getObjectUtils(schema) { return { extend: (extension) => { @@ -284,7 +281,6 @@ export function getObjectUtils(schema) { }, }; } - function validateAndTransformExtendedObject({ extensionKeys, value, @@ -317,11 +313,9 @@ function validateAndTransformExtendedObject({ }; } } - function isSchemaRequired(schema) { return !isSchemaOptional(schema); } - function isSchemaOptional(schema) { switch (schema.getType()) { case SchemaType.ANY: diff --git a/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts b/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts index c238a8a9612..0e24550d4a0 100644 --- a/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +++ b/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts @@ -4,12 +4,10 @@ import { ObjectSchema, PropertySchemas, } from './types'; - export declare function objectWithoutOptionalProperties< ParsedKeys extends string, T extends PropertySchemas, >(schemas: T): inferObjectWithoutOptionalPropertiesSchemaFromPropertySchemas; - export declare type inferObjectWithoutOptionalPropertiesSchemaFromPropertySchemas< T extends PropertySchemas, > = ObjectSchema< diff --git a/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.js b/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.js index 6399edc6a7f..1198d38c6c2 100644 --- a/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.js +++ b/libs/api-client/src/core/schemas/builders/object/objectWithoutOptionalProperties.js @@ -1,5 +1,4 @@ import { object } from './object'; - export function objectWithoutOptionalProperties(schemas) { return object(schemas); } diff --git a/libs/api-client/src/core/schemas/builders/object/property.d.ts b/libs/api-client/src/core/schemas/builders/object/property.d.ts index 88caba502b6..185ed9fae34 100644 --- a/libs/api-client/src/core/schemas/builders/object/property.d.ts +++ b/libs/api-client/src/core/schemas/builders/object/property.d.ts @@ -1,16 +1,13 @@ import { Schema } from '../../Schema'; - export declare function property( rawKey: RawKey, valueSchema: Schema, ): Property; - export interface Property { rawKey: RawKey; valueSchema: Schema; isProperty: true; } - export declare function isProperty>( maybeProperty: unknown, ): maybeProperty is O; diff --git a/libs/api-client/src/core/schemas/builders/object/property.js b/libs/api-client/src/core/schemas/builders/object/property.js index e4e44293e5b..e2170a9a6b8 100644 --- a/libs/api-client/src/core/schemas/builders/object/property.js +++ b/libs/api-client/src/core/schemas/builders/object/property.js @@ -5,7 +5,6 @@ export function property(rawKey, valueSchema) { isProperty: true, }; } - export function isProperty(maybeProperty) { // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition return maybeProperty.isProperty; diff --git a/libs/api-client/src/core/schemas/builders/object/types.d.ts b/libs/api-client/src/core/schemas/builders/object/types.d.ts index 64ac4d5350a..60be6bc78ec 100644 --- a/libs/api-client/src/core/schemas/builders/object/types.d.ts +++ b/libs/api-client/src/core/schemas/builders/object/types.d.ts @@ -3,23 +3,19 @@ import { addQuestionMarksToNullableProperties } from '../../utils/addQuestionMar import { ObjectLikeUtils } from '../object-like'; import { SchemaUtils } from '../schema-utils'; import { Property } from './property'; - export declare type ObjectSchema = BaseObjectSchema & ObjectLikeUtils & ObjectUtils & SchemaUtils; - export interface BaseObjectSchema extends BaseSchema { _getRawProperties: () => (keyof Raw)[]; _getParsedProperties: () => (keyof Parsed)[]; } - export interface ObjectUtils { extend: ( schemas: ObjectSchema, ) => ObjectSchema; } - export declare type inferRawObject> = O extends ObjectSchema ? Raw : never; export declare type inferParsedObject> = diff --git a/libs/api-client/src/core/schemas/builders/primitives/any.js b/libs/api-client/src/core/schemas/builders/primitives/any.js index c01ab681695..adda69ff6db 100644 --- a/libs/api-client/src/core/schemas/builders/primitives/any.js +++ b/libs/api-client/src/core/schemas/builders/primitives/any.js @@ -1,6 +1,5 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; - export const any = createIdentitySchemaCreator(SchemaType.ANY, (value) => ({ ok: true, value, diff --git a/libs/api-client/src/core/schemas/builders/primitives/boolean.js b/libs/api-client/src/core/schemas/builders/primitives/boolean.js index 3287cb866cf..ea2143debb4 100644 --- a/libs/api-client/src/core/schemas/builders/primitives/boolean.js +++ b/libs/api-client/src/core/schemas/builders/primitives/boolean.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export const boolean = createIdentitySchemaCreator( SchemaType.BOOLEAN, (value, { breadcrumbsPrefix = [] } = {}) => { diff --git a/libs/api-client/src/core/schemas/builders/primitives/number.js b/libs/api-client/src/core/schemas/builders/primitives/number.js index a91d926b1cd..9f36251e408 100644 --- a/libs/api-client/src/core/schemas/builders/primitives/number.js +++ b/libs/api-client/src/core/schemas/builders/primitives/number.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export const number = createIdentitySchemaCreator( SchemaType.NUMBER, (value, { breadcrumbsPrefix = [] } = {}) => { diff --git a/libs/api-client/src/core/schemas/builders/primitives/string.js b/libs/api-client/src/core/schemas/builders/primitives/string.js index ce2d817ea92..4d703804f29 100644 --- a/libs/api-client/src/core/schemas/builders/primitives/string.js +++ b/libs/api-client/src/core/schemas/builders/primitives/string.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForIncorrectType'; - export const string = createIdentitySchemaCreator( SchemaType.STRING, (value, { breadcrumbsPrefix = [] } = {}) => { diff --git a/libs/api-client/src/core/schemas/builders/primitives/unknown.js b/libs/api-client/src/core/schemas/builders/primitives/unknown.js index 7a0e33581b4..8402a5db991 100644 --- a/libs/api-client/src/core/schemas/builders/primitives/unknown.js +++ b/libs/api-client/src/core/schemas/builders/primitives/unknown.js @@ -1,6 +1,5 @@ import { SchemaType } from '../../Schema'; import { createIdentitySchemaCreator } from '../../utils/createIdentitySchemaCreator'; - export const unknown = createIdentitySchemaCreator( SchemaType.UNKNOWN, (value) => ({ ok: true, value }), diff --git a/libs/api-client/src/core/schemas/builders/record/record.d.ts b/libs/api-client/src/core/schemas/builders/record/record.d.ts index 56b299eac32..e1db09bbc0c 100644 --- a/libs/api-client/src/core/schemas/builders/record/record.d.ts +++ b/libs/api-client/src/core/schemas/builders/record/record.d.ts @@ -1,6 +1,5 @@ import { Schema } from '../../Schema'; import { RecordSchema } from './types'; - export declare function record< RawKey extends string | number, RawValue, diff --git a/libs/api-client/src/core/schemas/builders/record/record.js b/libs/api-client/src/core/schemas/builders/record/record.js index 0573485d559..573557f894e 100644 --- a/libs/api-client/src/core/schemas/builders/record/record.js +++ b/libs/api-client/src/core/schemas/builders/record/record.js @@ -4,7 +4,6 @@ import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForI import { isPlainObject } from '../../utils/isPlainObject'; import { maybeSkipValidation } from '../../utils/maybeSkipValidation'; import { getSchemaUtils } from '../schema-utils'; - export function record(keySchema, valueSchema) { const baseSchema = { parse: (raw, opts) => { @@ -98,7 +97,6 @@ export function record(keySchema, valueSchema) { getSchemaUtils(baseSchema), ); } - function validateAndTransformRecord({ value, isKeyNumeric, diff --git a/libs/api-client/src/core/schemas/builders/record/types.d.ts b/libs/api-client/src/core/schemas/builders/record/types.d.ts index 44300c0afc7..e76d8efb387 100644 --- a/libs/api-client/src/core/schemas/builders/record/types.d.ts +++ b/libs/api-client/src/core/schemas/builders/record/types.d.ts @@ -1,6 +1,5 @@ import { BaseSchema } from '../../Schema'; import { SchemaUtils } from '../schema-utils'; - export declare type RecordSchema< RawKey extends string | number, RawValue, diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.d.ts b/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.d.ts index f5ea0496b4c..93e54905927 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.d.ts +++ b/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.d.ts @@ -1,7 +1,5 @@ import { ValidationError } from '../../Schema'; - export declare class JsonError extends Error { readonly errors: ValidationError[]; - constructor(errors: ValidationError[]); } diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.js b/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.js index a47c21815c9..dec4f621f4f 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.js +++ b/libs/api-client/src/core/schemas/builders/schema-utils/JsonError.js @@ -1,5 +1,4 @@ import { stringifyValidationError } from './stringifyValidationErrors'; - export class JsonError extends Error { constructor(errors) { super(errors.map(stringifyValidationError).join('; ')); diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.d.ts b/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.d.ts index 5a1bba4469b..aba423a5c07 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.d.ts +++ b/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.d.ts @@ -1,7 +1,5 @@ import { ValidationError } from '../../Schema'; - export declare class ParseError extends Error { readonly errors: ValidationError[]; - constructor(errors: ValidationError[]); } diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.js b/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.js index 498131c475e..b42bd42dd14 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.js +++ b/libs/api-client/src/core/schemas/builders/schema-utils/ParseError.js @@ -1,5 +1,4 @@ import { stringifyValidationError } from './stringifyValidationErrors'; - export class ParseError extends Error { constructor(errors) { super(errors.map(stringifyValidationError).join('; ')); diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.d.ts b/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.d.ts index 1f012da07eb..089960517f4 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +++ b/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.d.ts @@ -1,5 +1,4 @@ import { BaseSchema, Schema, SchemaOptions } from '../../Schema'; - export interface SchemaUtils { optional: () => Schema; transform: ( @@ -8,23 +7,19 @@ export interface SchemaUtils { parseOrThrow: (raw: unknown, opts?: SchemaOptions) => Parsed; jsonOrThrow: (raw: unknown, opts?: SchemaOptions) => Raw; } - export interface SchemaTransformer { transform: (parsed: Parsed) => Transformed; untransform: (transformed: any) => Parsed; } - export declare function getSchemaUtils( schema: BaseSchema, ): SchemaUtils; - /** * schema utils are defined in one file to resolve issues with circular imports */ export declare function optional( schema: BaseSchema, ): Schema; - export declare function transform( schema: BaseSchema, transformer: SchemaTransformer, diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.js b/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.js index ce4f7e2c5a6..a7d963dd5e3 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.js +++ b/libs/api-client/src/core/schemas/builders/schema-utils/getSchemaUtils.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { JsonError } from './JsonError'; import { ParseError } from './ParseError'; - export function getSchemaUtils(schema) { return { optional: () => optional(schema), @@ -22,7 +21,6 @@ export function getSchemaUtils(schema) { }, }; } - /** * schema utils are defined in one file to resolve issues with circular imports */ @@ -62,7 +60,6 @@ export function optional(schema) { getSchemaUtils(baseSchema), ); } - export function transform(schema, transformer) { const baseSchema = { parse: (raw, opts) => { diff --git a/libs/api-client/src/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts b/libs/api-client/src/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts index 5eed5772451..737956c6ad1 100644 --- a/libs/api-client/src/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts +++ b/libs/api-client/src/core/schemas/builders/schema-utils/stringifyValidationErrors.d.ts @@ -1,5 +1,4 @@ import { ValidationError } from '../../Schema'; - export declare function stringifyValidationError( error: ValidationError, ): string; diff --git a/libs/api-client/src/core/schemas/builders/set/set.d.ts b/libs/api-client/src/core/schemas/builders/set/set.d.ts index 397e873714a..f5301ee8f06 100644 --- a/libs/api-client/src/core/schemas/builders/set/set.d.ts +++ b/libs/api-client/src/core/schemas/builders/set/set.d.ts @@ -1,5 +1,4 @@ import { Schema } from '../../Schema'; - export declare function set( schema: Schema, ): Schema>; diff --git a/libs/api-client/src/core/schemas/builders/set/set.js b/libs/api-client/src/core/schemas/builders/set/set.js index 3fd4c5307a6..18b0dad1dca 100644 --- a/libs/api-client/src/core/schemas/builders/set/set.js +++ b/libs/api-client/src/core/schemas/builders/set/set.js @@ -3,7 +3,6 @@ import { getErrorMessageForIncorrectType } from '../../utils/getErrorMessageForI import { maybeSkipValidation } from '../../utils/maybeSkipValidation'; import { list } from '../list'; import { getSchemaUtils } from '../schema-utils'; - export function set(schema) { const listSchema = list(schema); const baseSchema = { diff --git a/libs/api-client/src/core/schemas/builders/undiscriminated-union/types.d.ts b/libs/api-client/src/core/schemas/builders/undiscriminated-union/types.d.ts index d02e1a186f4..3af85cee6b3 100644 --- a/libs/api-client/src/core/schemas/builders/undiscriminated-union/types.d.ts +++ b/libs/api-client/src/core/schemas/builders/undiscriminated-union/types.d.ts @@ -1,5 +1,4 @@ import { inferParsed, inferRaw, Schema } from '../../Schema'; - export declare type UndiscriminatedUnionSchema = Schema< inferRawUnidiscriminatedUnionSchema, diff --git a/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts b/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts index 3b4a278f76c..a3cc61622b1 100644 --- a/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts +++ b/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.d.ts @@ -3,7 +3,6 @@ import { inferParsedUnidiscriminatedUnionSchema, inferRawUnidiscriminatedUnionSchema, } from './types'; - export declare function undiscriminatedUnion< Schemas extends [Schema, ...Schema[]], >( diff --git a/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js b/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js index efeee32584d..3f3a814d77b 100644 --- a/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +++ b/libs/api-client/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js @@ -1,7 +1,6 @@ import { SchemaType } from '../../Schema'; import { maybeSkipValidation } from '../../utils/maybeSkipValidation'; import { getSchemaUtils } from '../schema-utils'; - export function undiscriminatedUnion(schemas) { const baseSchema = { parse: (raw, opts) => { @@ -25,7 +24,6 @@ export function undiscriminatedUnion(schemas) { getSchemaUtils(baseSchema), ); } - function validateAndTransformUndiscriminatedUnion(transform, schemas, opts) { const errors = []; for (const [index, schema] of schemas.entries()) { diff --git a/libs/api-client/src/core/schemas/builders/union/discriminant.d.ts b/libs/api-client/src/core/schemas/builders/union/discriminant.d.ts index 6635d562627..4e4d68cc5da 100644 --- a/libs/api-client/src/core/schemas/builders/union/discriminant.d.ts +++ b/libs/api-client/src/core/schemas/builders/union/discriminant.d.ts @@ -5,7 +5,6 @@ export declare function discriminant< parsedDiscriminant: ParsedDiscriminant, rawDiscriminant: RawDiscriminant, ): Discriminant; - export interface Discriminant< RawDiscriminant extends string, ParsedDiscriminant extends string, diff --git a/libs/api-client/src/core/schemas/builders/union/types.d.ts b/libs/api-client/src/core/schemas/builders/union/types.d.ts index f624f9f1435..e337b9633d4 100644 --- a/libs/api-client/src/core/schemas/builders/union/types.d.ts +++ b/libs/api-client/src/core/schemas/builders/union/types.d.ts @@ -1,6 +1,5 @@ import { inferParsedObject, inferRawObject, ObjectSchema } from '../object'; import { Discriminant } from './discriminant'; - export declare type UnionSubtypes< DiscriminantValues extends string | number | symbol, > = { diff --git a/libs/api-client/src/core/schemas/builders/union/union.d.ts b/libs/api-client/src/core/schemas/builders/union/union.d.ts index a4bc288c11f..d92c6ceeedd 100644 --- a/libs/api-client/src/core/schemas/builders/union/union.d.ts +++ b/libs/api-client/src/core/schemas/builders/union/union.d.ts @@ -1,7 +1,6 @@ import { ObjectLikeSchema } from '../object-like'; import { Discriminant } from './discriminant'; import { inferParsedUnion, inferRawUnion, UnionSubtypes } from './types'; - export declare function union< D extends string | Discriminant, U extends UnionSubtypes, diff --git a/libs/api-client/src/core/schemas/builders/union/union.js b/libs/api-client/src/core/schemas/builders/union/union.js index 5ccb601187b..b9b8b3b9339 100644 --- a/libs/api-client/src/core/schemas/builders/union/union.js +++ b/libs/api-client/src/core/schemas/builders/union/union.js @@ -23,7 +23,6 @@ import { maybeSkipValidation } from '../../utils/maybeSkipValidation'; import { enum_ } from '../enum'; import { getObjectLikeUtils } from '../object-like'; import { getSchemaUtils } from '../schema-utils'; - export function union(discriminant, union) { const rawDiscriminant = typeof discriminant === 'string' @@ -119,7 +118,6 @@ export function union(discriminant, union) { getObjectLikeUtils(baseSchema), ); } - function transformAndValidateUnion({ value, discriminant, diff --git a/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.d.ts b/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.d.ts index dbd270420e0..3d5c5fc0aed 100644 --- a/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.d.ts +++ b/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.d.ts @@ -1,5 +1,4 @@ import { MaybeValid, Schema, SchemaOptions, SchemaType } from '../Schema'; - export declare function createIdentitySchemaCreator( schemaType: SchemaType, validate: (value: unknown, opts?: SchemaOptions) => MaybeValid, diff --git a/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.js b/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.js index 2b471a57fb0..1633fa26952 100644 --- a/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.js +++ b/libs/api-client/src/core/schemas/utils/createIdentitySchemaCreator.js @@ -1,6 +1,5 @@ import { getSchemaUtils } from '../builders/schema-utils'; import { maybeSkipValidation } from './maybeSkipValidation'; - export function createIdentitySchemaCreator(schemaType, validate) { return () => { const baseSchema = { diff --git a/libs/api-client/src/core/schemas/utils/getErrorMessageForIncorrectType.js b/libs/api-client/src/core/schemas/utils/getErrorMessageForIncorrectType.js index dab15aaf2ff..dc5199a617c 100644 --- a/libs/api-client/src/core/schemas/utils/getErrorMessageForIncorrectType.js +++ b/libs/api-client/src/core/schemas/utils/getErrorMessageForIncorrectType.js @@ -1,7 +1,6 @@ export function getErrorMessageForIncorrectType(value, expectedType) { return `Expected ${expectedType}. Received ${getTypeAsString(value)}.`; } - function getTypeAsString(value) { if (Array.isArray(value)) { return 'list'; diff --git a/libs/api-client/src/core/schemas/utils/maybeSkipValidation.d.ts b/libs/api-client/src/core/schemas/utils/maybeSkipValidation.d.ts index 89e75960344..e0d253bb720 100644 --- a/libs/api-client/src/core/schemas/utils/maybeSkipValidation.d.ts +++ b/libs/api-client/src/core/schemas/utils/maybeSkipValidation.d.ts @@ -1,5 +1,4 @@ import { BaseSchema } from '../Schema'; - export declare function maybeSkipValidation< S extends BaseSchema, Raw, diff --git a/libs/api-client/src/core/schemas/utils/maybeSkipValidation.js b/libs/api-client/src/core/schemas/utils/maybeSkipValidation.js index 4777b31a7a1..f229e436cbf 100644 --- a/libs/api-client/src/core/schemas/utils/maybeSkipValidation.js +++ b/libs/api-client/src/core/schemas/utils/maybeSkipValidation.js @@ -4,7 +4,6 @@ export function maybeSkipValidation(schema) { parse: transformAndMaybeSkipValidation(schema.parse), }); } - function transformAndMaybeSkipValidation(transform) { return (value, opts) => { const transformed = transform(value, opts); diff --git a/libs/api-client/src/errors/CommonApiError.d.ts b/libs/api-client/src/errors/CommonApiError.d.ts index 281b9956f43..37e6362dae3 100644 --- a/libs/api-client/src/errors/CommonApiError.d.ts +++ b/libs/api-client/src/errors/CommonApiError.d.ts @@ -4,7 +4,6 @@ export declare class CommonApiError extends Error { readonly statusCode?: number; readonly body?: unknown; - constructor({ message, statusCode, diff --git a/libs/api-client/src/errors/CommonApiError.js b/libs/api-client/src/errors/CommonApiError.js index 26834314b2b..498215fff94 100644 --- a/libs/api-client/src/errors/CommonApiError.js +++ b/libs/api-client/src/errors/CommonApiError.js @@ -13,7 +13,6 @@ export class CommonApiError extends Error { } } } - function buildMessage({ message, statusCode, body }) { let lines = []; if (message != null) { diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.d.ts b/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.d.ts index 97c33da7122..922d912b47b 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.d.ts +++ b/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { CreateCommentRequestDiscordMeta } from '../../types/CreateCommentRequestDiscordMeta'; - export declare const CreateCommentRequest: core.serialization.Schema< serializers.CreateCommentRequest.Raw, CommonApi.CreateCommentRequest diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.js b/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.js index b7b643f94d7..53a9b0eae41 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.js +++ b/libs/api-client/src/serialization/resources/comment/client/requests/CreateCommentRequest.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../../core'; import { CreateCommentRequestDiscordMeta } from '../../types/CreateCommentRequestDiscordMeta'; - export const CreateCommentRequest = core.serialization.object({ threadId: core.serialization.property( 'thread_id', diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.d.ts b/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.d.ts index d99d61df377..77323fcc4f8 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.d.ts +++ b/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const DeleteCommentRequest: core.serialization.Schema< serializers.DeleteCommentRequest.Raw, CommonApi.DeleteCommentRequest diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.js b/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.js index a94e612ce2b..1fd2bdeaece 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.js +++ b/libs/api-client/src/serialization/resources/comment/client/requests/DeleteCommentRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const DeleteCommentRequest = core.serialization.object({ commentId: core.serialization.property( 'comment_id', diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.d.ts b/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.d.ts index 499993144d6..6c2abfeef44 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.d.ts +++ b/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const UpdateCommentRequest: core.serialization.Schema< serializers.UpdateCommentRequest.Raw, CommonApi.UpdateCommentRequest diff --git a/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.js b/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.js index f8189adb53e..3aceaaef83c 100644 --- a/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.js +++ b/libs/api-client/src/serialization/resources/comment/client/requests/UpdateCommentRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const UpdateCommentRequest = core.serialization.object({ commentId: core.serialization.property( 'comment_id', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts index 4ec147c1b64..ea88cf6d143 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentRequestDiscordMetaUser } from './CreateCommentRequestDiscordMetaUser'; - export declare const CreateCommentRequestDiscordMeta: core.serialization.ObjectSchema< serializers.CreateCommentRequestDiscordMeta.Raw, CommonApi.CreateCommentRequestDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.js index 099515db81e..7da623654fd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentRequestDiscordMetaUser } from './CreateCommentRequestDiscordMetaUser'; - export const CreateCommentRequestDiscordMeta = core.serialization.object({ user: CreateCommentRequestDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.d.ts index bdd5bd6e821..e4ef6efe90c 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentRequestDiscordMetaUser: core.serialization.ObjectSchema< serializers.CreateCommentRequestDiscordMetaUser.Raw, CommonApi.CreateCommentRequestDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.js index 2240328c749..84047ec5d01 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentRequestDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentRequestDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.d.ts index 08599439fbd..36fe31be0e8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.d.ts @@ -10,7 +10,6 @@ import { CreateCommentResponseDiscordMeta } from './CreateCommentResponseDiscord import { CreateCommentResponseReaction } from './CreateCommentResponseReaction'; import { CreateCommentResponseSearch } from './CreateCommentResponseSearch'; import { CreateCommentResponseThread } from './CreateCommentResponseThread'; - export declare const CreateCommentResponse: core.serialization.ObjectSchema< serializers.CreateCommentResponse.Raw, CommonApi.CreateCommentResponse @@ -21,7 +20,6 @@ export declare namespace CreateCommentResponse { thread_id: number; address_id: number; text: string; - plaintext: string; parent_id?: string | null; content_url?: string | null; canvas_signed_data?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.js index 95edf61eb30..3a28e2fc348 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponse.js @@ -8,7 +8,6 @@ import { CreateCommentResponseDiscordMeta } from './CreateCommentResponseDiscord import { CreateCommentResponseReaction } from './CreateCommentResponseReaction'; import { CreateCommentResponseSearch } from './CreateCommentResponseSearch'; import { CreateCommentResponseThread } from './CreateCommentResponseThread'; - export const CreateCommentResponse = core.serialization.object({ id: core.serialization.number().optional(), threadId: core.serialization.property( @@ -20,7 +19,6 @@ export const CreateCommentResponse = core.serialization.object({ core.serialization.number(), ), text: core.serialization.string(), - plaintext: core.serialization.string(), parentId: core.serialization.property( 'parent_id', core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.d.ts index aab37db03aa..c3dc886076b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentResponseAddressRole } from './CreateCommentResponseAddressRole'; import { CreateCommentResponseAddressUser } from './CreateCommentResponseAddressUser'; import { CreateCommentResponseAddressWalletId } from './CreateCommentResponseAddressWalletId'; - export declare const CreateCommentResponseAddress: core.serialization.ObjectSchema< serializers.CreateCommentResponseAddress.Raw, CommonApi.CreateCommentResponseAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.js index 393b0ee5587..1517c0e837f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseAddressRole } from './CreateCommentResponseAddressRole'; import { CreateCommentResponseAddressUser } from './CreateCommentResponseAddressUser'; import { CreateCommentResponseAddressWalletId } from './CreateCommentResponseAddressWalletId'; - export const CreateCommentResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.d.ts index bd5bc87c23f..140cb3a73b2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseAddressRole: core.serialization.Schema< serializers.CreateCommentResponseAddressRole.Raw, CommonApi.CreateCommentResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.js index c9e7811f571..97a8f8c9c1f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.d.ts index 7c0cd21a7b9..c7dafdeda91 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentResponseAddressUserApiKey } from './CreateCommentResponseA import { CreateCommentResponseAddressUserEmailNotificationInterval } from './CreateCommentResponseAddressUserEmailNotificationInterval'; import { CreateCommentResponseAddressUserProfile } from './CreateCommentResponseAddressUserProfile'; import { CreateCommentResponseAddressUserProfileTagsItem } from './CreateCommentResponseAddressUserProfileTagsItem'; - export declare const CreateCommentResponseAddressUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseAddressUser.Raw, CommonApi.CreateCommentResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.js index 5c3bbd27c93..e10e7377a36 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUser.js @@ -6,7 +6,6 @@ import { CreateCommentResponseAddressUserApiKey } from './CreateCommentResponseA import { CreateCommentResponseAddressUserEmailNotificationInterval } from './CreateCommentResponseAddressUserEmailNotificationInterval'; import { CreateCommentResponseAddressUserProfile } from './CreateCommentResponseAddressUserProfile'; import { CreateCommentResponseAddressUserProfileTagsItem } from './CreateCommentResponseAddressUserProfileTagsItem'; - export const CreateCommentResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), email: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..927ee1bc1eb --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentResponseAddressUserApiKey.Raw, + CommonApi.CreateCommentResponseAddressUserApiKey +>; +export declare namespace CreateCommentResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.js new file mode 100644 index 00000000000..49799a7a40f --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserApiKey.js @@ -0,0 +1,25 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentResponseAddressUserApiKey = core.serialization.object( + { + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }, +); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.d.ts index de47a6128cf..bd05cb919be 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentResponseAddressUserEmailNotificationInterval.Raw, CommonApi.CreateCommentResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.js index a7dc91fbc78..15f8c1e4d87 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts index 63d5914e61b..050136d30f4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseAddressUserProfileBackgroundImage } from './CreateCommentResponseAddressUserProfileBackgroundImage'; - export declare const CreateCommentResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentResponseAddressUserProfile.Raw, CommonApi.CreateCommentResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.js index d38448a0922..e3b8fd1cdee 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseAddressUserProfileBackgroundImage } from './CreateCommentResponseAddressUserProfileBackgroundImage'; - export const CreateCommentResponseAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.d.ts index e03613f717a..56d5a4d6e7a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentResponseAddressUserProfileBackgroundImage.Raw, CommonApi.CreateCommentResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.js index f029779ace7..3cd72541128 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.d.ts index 5e15dcb0a19..65b59f507b7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseAddressUserProfileTagsItem.Raw, CommonApi.CreateCommentResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.js index fd0eedbdb33..d77e23d3d36 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.d.ts index 1b2830347b9..db198ca040f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseAddressWalletId: core.serialization.Schema< serializers.CreateCommentResponseAddressWalletId.Raw, CommonApi.CreateCommentResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.js index f5c06015b1a..3d5b18ef31b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseAddressWalletId = core.serialization.enum_([ 'magic', 'polkadot', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.d.ts index b150b5b2e08..76533686afd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseCommentVersionHistoriesItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseCommentVersionHistoriesItem.Raw, CommonApi.CreateCommentResponseCommentVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.js index df52af528f8..d4c1cfcb946 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseCommentVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseCommentVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts index 3e4c3f638ba..403070d7447 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseDiscordMetaUser } from './CreateCommentResponseDiscordMetaUser'; - export declare const CreateCommentResponseDiscordMeta: core.serialization.ObjectSchema< serializers.CreateCommentResponseDiscordMeta.Raw, CommonApi.CreateCommentResponseDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.js index 96e2b5dd365..2befa0d86bd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseDiscordMetaUser } from './CreateCommentResponseDiscordMetaUser'; - export const CreateCommentResponseDiscordMeta = core.serialization.object({ user: CreateCommentResponseDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.d.ts index c14cb66f9cb..8a5b2af25de 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseDiscordMetaUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseDiscordMetaUser.Raw, CommonApi.CreateCommentResponseDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.js index 7ae34622c04..187f74657a2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.d.ts index 3d789bf930e..deaac1322c0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseReactionAddress } from './CreateCommentResponseReactionAddress'; - export declare const CreateCommentResponseReaction: core.serialization.ObjectSchema< serializers.CreateCommentResponseReaction.Raw, CommonApi.CreateCommentResponseReaction diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.js index 4eccd987f58..7a9cf241c03 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReaction.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseReactionAddress } from './CreateCommentResponseReactionAddress'; - export const CreateCommentResponseReaction = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.d.ts index 21efb650a68..75541528f9d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentResponseReactionAddressRole } from './CreateCommentResponseReactionAddressRole'; import { CreateCommentResponseReactionAddressUser } from './CreateCommentResponseReactionAddressUser'; import { CreateCommentResponseReactionAddressWalletId } from './CreateCommentResponseReactionAddressWalletId'; - export declare const CreateCommentResponseReactionAddress: core.serialization.ObjectSchema< serializers.CreateCommentResponseReactionAddress.Raw, CommonApi.CreateCommentResponseReactionAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.js index 4c857fb77d6..90e6965e878 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseReactionAddressRole } from './CreateCommentResponseReactionAddressRole'; import { CreateCommentResponseReactionAddressUser } from './CreateCommentResponseReactionAddressUser'; import { CreateCommentResponseReactionAddressWalletId } from './CreateCommentResponseReactionAddressWalletId'; - export const CreateCommentResponseReactionAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.d.ts index 2e3e6ec9e99..1d46d7f79cb 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseReactionAddressRole: core.serialization.Schema< serializers.CreateCommentResponseReactionAddressRole.Raw, CommonApi.CreateCommentResponseReactionAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.js index cc26daa407d..e5dfe07aa9f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseReactionAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts index fbdcacf56c8..ccad9741bdc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentResponseReactionAddressUserApiKey } from './CreateCommentR import { CreateCommentResponseReactionAddressUserEmailNotificationInterval } from './CreateCommentResponseReactionAddressUserEmailNotificationInterval'; import { CreateCommentResponseReactionAddressUserProfile } from './CreateCommentResponseReactionAddressUserProfile'; import { CreateCommentResponseReactionAddressUserProfileTagsItem } from './CreateCommentResponseReactionAddressUserProfileTagsItem'; - export declare const CreateCommentResponseReactionAddressUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseReactionAddressUser.Raw, CommonApi.CreateCommentResponseReactionAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.js index ba5ee7a1668..d30f495533c 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUser.js @@ -6,7 +6,6 @@ import { CreateCommentResponseReactionAddressUserApiKey } from './CreateCommentR import { CreateCommentResponseReactionAddressUserEmailNotificationInterval } from './CreateCommentResponseReactionAddressUserEmailNotificationInterval'; import { CreateCommentResponseReactionAddressUserProfile } from './CreateCommentResponseReactionAddressUserProfile'; import { CreateCommentResponseReactionAddressUserProfileTagsItem } from './CreateCommentResponseReactionAddressUserProfileTagsItem'; - export const CreateCommentResponseReactionAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..e3c716b46c0 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentResponseReactionAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentResponseReactionAddressUserApiKey.Raw, + CommonApi.CreateCommentResponseReactionAddressUserApiKey +>; +export declare namespace CreateCommentResponseReactionAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js new file mode 100644 index 00000000000..309632d1311 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentResponseReactionAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts index a43dca8fb73..673a9d94bb3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseReactionAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentResponseReactionAddressUserEmailNotificationInterval.Raw, CommonApi.CreateCommentResponseReactionAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.js index 5451aca91a2..5fee5c03483 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseReactionAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts index 09986ba2a75..ccaa787bd91 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseReactionAddressUserProfileBackgroundImage } from './CreateCommentResponseReactionAddressUserProfileBackgroundImage'; - export declare const CreateCommentResponseReactionAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentResponseReactionAddressUserProfile.Raw, CommonApi.CreateCommentResponseReactionAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.js index 3286ca4cd8a..06a038e8a68 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseReactionAddressUserProfileBackgroundImage } from './CreateCommentResponseReactionAddressUserProfileBackgroundImage'; - export const CreateCommentResponseReactionAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts index 8c9331f5b5f..8d74f6d3936 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseReactionAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentResponseReactionAddressUserProfileBackgroundImage.Raw, CommonApi.CreateCommentResponseReactionAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.js index 5f09011763b..97785adf6fe 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseReactionAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.d.ts index 01161bcc0e7..16778e0e6a2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseReactionAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseReactionAddressUserProfileTagsItem.Raw, CommonApi.CreateCommentResponseReactionAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.js index d464f6082f7..3ca4dd17c89 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseReactionAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.d.ts index 3d2520d9c48..96a4fd136dd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseReactionAddressWalletId: core.serialization.Schema< serializers.CreateCommentResponseReactionAddressWalletId.Raw, CommonApi.CreateCommentResponseReactionAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.js index be578debee9..ae4bb1bd9d8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseReactionAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseReactionAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.d.ts index cb42c97dc34..e6706dd1b33 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseSearch: core.serialization.Schema< serializers.CreateCommentResponseSearch.Raw, CommonApi.CreateCommentResponseSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.js index 5d4b5b105eb..5ee1808b701 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.d.ts index 8f2bccadb65..4a740715fc7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.d.ts @@ -12,7 +12,6 @@ import { CreateCommentResponseThreadReactionsItem } from './CreateCommentRespons import { CreateCommentResponseThreadSearch } from './CreateCommentResponseThreadSearch'; import { CreateCommentResponseThreadThreadVersionHistoriesItem } from './CreateCommentResponseThreadThreadVersionHistoriesItem'; import { CreateCommentResponseThreadTopic } from './CreateCommentResponseThreadTopic'; - export declare const CreateCommentResponseThread: core.serialization.ObjectSchema< serializers.CreateCommentResponseThread.Raw, CommonApi.CreateCommentResponseThread @@ -23,14 +22,13 @@ export declare namespace CreateCommentResponseThread { address_id: number; title: string; kind: string; - stage: string; + stage?: string | null; body?: string | null; - plaintext?: string | null; url?: string | null; topic_id?: number | null; pinned?: boolean | null; community_id: string; - view_count: number; + view_count?: number | null; links?: CreateCommentResponseThreadLinksItem.Raw[] | null; content_url?: string | null; read_only?: boolean | null; @@ -46,9 +44,9 @@ export declare namespace CreateCommentResponseThread { archived_at?: string | null; locked_at?: string | null; discord_meta?: CreateCommentResponseThreadDiscordMeta.Raw | null; - reaction_count: number; - reaction_weights_sum: number; - comment_count: number; + reaction_count?: number | null; + reaction_weights_sum?: number | null; + comment_count?: number | null; activity_rank_date?: string | null; created_by?: string | null; profile_name?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.js index 02695ab24f7..b0c8e47cf0a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThread.js @@ -10,7 +10,6 @@ import { CreateCommentResponseThreadReactionsItem } from './CreateCommentRespons import { CreateCommentResponseThreadSearch } from './CreateCommentResponseThreadSearch'; import { CreateCommentResponseThreadThreadVersionHistoriesItem } from './CreateCommentResponseThreadThreadVersionHistoriesItem'; import { CreateCommentResponseThreadTopic } from './CreateCommentResponseThreadTopic'; - export const CreateCommentResponseThread = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( @@ -19,9 +18,8 @@ export const CreateCommentResponseThread = core.serialization.object({ ), title: core.serialization.string(), kind: core.serialization.string(), - stage: core.serialization.string(), + stage: core.serialization.string().optional(), body: core.serialization.string().optional(), - plaintext: core.serialization.string().optional(), url: core.serialization.string().optional(), topicId: core.serialization.property( 'topic_id', @@ -34,7 +32,7 @@ export const CreateCommentResponseThread = core.serialization.object({ ), viewCount: core.serialization.property( 'view_count', - core.serialization.number(), + core.serialization.number().optional(), ), links: core.serialization .list(CreateCommentResponseThreadLinksItem) @@ -97,15 +95,15 @@ export const CreateCommentResponseThread = core.serialization.object({ ), reactionCount: core.serialization.property( 'reaction_count', - core.serialization.number(), + core.serialization.number().optional(), ), reactionWeightsSum: core.serialization.property( 'reaction_weights_sum', - core.serialization.number(), + core.serialization.number().optional(), ), commentCount: core.serialization.property( 'comment_count', - core.serialization.number(), + core.serialization.number().optional(), ), activityRankDate: core.serialization.property( 'activity_rank_date', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.d.ts index 360decd541a..30f7e826a00 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentResponseThreadAddressRole } from './CreateCommentResponseThreadAddressRole'; import { CreateCommentResponseThreadAddressUser } from './CreateCommentResponseThreadAddressUser'; import { CreateCommentResponseThreadAddressWalletId } from './CreateCommentResponseThreadAddressWalletId'; - export declare const CreateCommentResponseThreadAddress: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadAddress.Raw, CommonApi.CreateCommentResponseThreadAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.js index 8cae9a7b68a..91dca80180b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseThreadAddressRole } from './CreateCommentResponseThreadAddressRole'; import { CreateCommentResponseThreadAddressUser } from './CreateCommentResponseThreadAddressUser'; import { CreateCommentResponseThreadAddressWalletId } from './CreateCommentResponseThreadAddressWalletId'; - export const CreateCommentResponseThreadAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.d.ts index 669d7a4b5ff..68c1627080e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadAddressRole: core.serialization.Schema< serializers.CreateCommentResponseThreadAddressRole.Raw, CommonApi.CreateCommentResponseThreadAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.js index b39608b1660..b768f52e9d8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts index 06e3184bec0..f14ba431147 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentResponseThreadAddressUserApiKey } from './CreateCommentRes import { CreateCommentResponseThreadAddressUserEmailNotificationInterval } from './CreateCommentResponseThreadAddressUserEmailNotificationInterval'; import { CreateCommentResponseThreadAddressUserProfile } from './CreateCommentResponseThreadAddressUserProfile'; import { CreateCommentResponseThreadAddressUserProfileTagsItem } from './CreateCommentResponseThreadAddressUserProfileTagsItem'; - export declare const CreateCommentResponseThreadAddressUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadAddressUser.Raw, CommonApi.CreateCommentResponseThreadAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.js index a8dd1d5db16..8606c7d9911 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUser.js @@ -6,7 +6,6 @@ import { CreateCommentResponseThreadAddressUserApiKey } from './CreateCommentRes import { CreateCommentResponseThreadAddressUserEmailNotificationInterval } from './CreateCommentResponseThreadAddressUserEmailNotificationInterval'; import { CreateCommentResponseThreadAddressUserProfile } from './CreateCommentResponseThreadAddressUserProfile'; import { CreateCommentResponseThreadAddressUserProfileTagsItem } from './CreateCommentResponseThreadAddressUserProfileTagsItem'; - export const CreateCommentResponseThreadAddressUser = core.serialization.object( { id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..247914d6daf --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentResponseThreadAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentResponseThreadAddressUserApiKey.Raw, + CommonApi.CreateCommentResponseThreadAddressUserApiKey +>; +export declare namespace CreateCommentResponseThreadAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js new file mode 100644 index 00000000000..76872e05c6e --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentResponseThreadAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts index 12290fa04a7..de658ee76d5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentResponseThreadAddressUserEmailNotificationInterval.Raw, CommonApi.CreateCommentResponseThreadAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.js index a7fe1703b7e..f546a78b5a9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts index 4856a647253..88269b64fee 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadAddressUserProfileBackgroundImage } from './CreateCommentResponseThreadAddressUserProfileBackgroundImage'; - export declare const CreateCommentResponseThreadAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadAddressUserProfile.Raw, CommonApi.CreateCommentResponseThreadAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.js index a2dc4a29420..d0c84cf2300 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadAddressUserProfileBackgroundImage } from './CreateCommentResponseThreadAddressUserProfileBackgroundImage'; - export const CreateCommentResponseThreadAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts index 19a15980131..44761a41870 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadAddressUserProfileBackgroundImage.Raw, CommonApi.CreateCommentResponseThreadAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.js index 21fea3c51c2..99c0f19dc69 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.d.ts index dd388bcb2f9..ee52b722def 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadAddressUserProfileTagsItem.Raw, CommonApi.CreateCommentResponseThreadAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.js index c8d00c13fe9..8d3a11a020c 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.d.ts index b1e1c23d74f..066abd6a329 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadAddressWalletId: core.serialization.Schema< serializers.CreateCommentResponseThreadAddressWalletId.Raw, CommonApi.CreateCommentResponseThreadAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.js index 3616479f620..2892c968c37 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts index 8a8b3c84795..a989c366b51 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentResponseThreadCollaboratorsItemRole } from './CreateCommentResponseThreadCollaboratorsItemRole'; import { CreateCommentResponseThreadCollaboratorsItemUser } from './CreateCommentResponseThreadCollaboratorsItemUser'; import { CreateCommentResponseThreadCollaboratorsItemWalletId } from './CreateCommentResponseThreadCollaboratorsItemWalletId'; - export declare const CreateCommentResponseThreadCollaboratorsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadCollaboratorsItem.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.js index 93884541462..60e99907eda 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseThreadCollaboratorsItemRole } from './CreateCommentResponseThreadCollaboratorsItemRole'; import { CreateCommentResponseThreadCollaboratorsItemUser } from './CreateCommentResponseThreadCollaboratorsItemUser'; import { CreateCommentResponseThreadCollaboratorsItemWalletId } from './CreateCommentResponseThreadCollaboratorsItemWalletId'; - export const CreateCommentResponseThreadCollaboratorsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.d.ts index 021561e0ba8..7b4f82d16ec 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadCollaboratorsItemRole: core.serialization.Schema< serializers.CreateCommentResponseThreadCollaboratorsItemRole.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemRole diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.js index 782a88548f6..5feb104d68d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadCollaboratorsItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts index e2ff7e66dc8..510c12d0de2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentResponseThreadCollaboratorsItemUserApiKey } from './Create import { CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval } from './CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval'; import { CreateCommentResponseThreadCollaboratorsItemUserProfile } from './CreateCommentResponseThreadCollaboratorsItemUserProfile'; import { CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem } from './CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem'; - export declare const CreateCommentResponseThreadCollaboratorsItemUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadCollaboratorsItemUser.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.js index 3fe80a02229..6053bd34805 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUser.js @@ -6,7 +6,6 @@ import { CreateCommentResponseThreadCollaboratorsItemUserApiKey } from './Create import { CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval } from './CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval'; import { CreateCommentResponseThreadCollaboratorsItemUserProfile } from './CreateCommentResponseThreadCollaboratorsItemUserProfile'; import { CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem } from './CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem'; - export const CreateCommentResponseThreadCollaboratorsItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..d3ae03069c9 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentResponseThreadCollaboratorsItemUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentResponseThreadCollaboratorsItemUserApiKey.Raw, + CommonApi.CreateCommentResponseThreadCollaboratorsItemUserApiKey +>; +export declare namespace CreateCommentResponseThreadCollaboratorsItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..30e2bf423e4 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentResponseThreadCollaboratorsItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts index 44a87dd0e31..333f74eb69e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js index df5b7debbfb..f4bdbd3cddf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts index 2b0fb31dc4a..dc072941968 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage } from './CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage'; - export declare const CreateCommentResponseThreadCollaboratorsItemUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadCollaboratorsItemUserProfile.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.js index 6d68931bd33..598329229d4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage } from './CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage'; - export const CreateCommentResponseThreadCollaboratorsItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts index 0697bf729a2..2eed0164218 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js index 122490207a4..210abf65ef7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts index d68940242e5..7559def0bb2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js index 53e641ae190..a4495355103 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadCollaboratorsItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.d.ts index fabd3fd3c74..e60c7e8722b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadCollaboratorsItemWalletId: core.serialization.Schema< serializers.CreateCommentResponseThreadCollaboratorsItemWalletId.Raw, CommonApi.CreateCommentResponseThreadCollaboratorsItemWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.js index eeb526656f7..664b18a36a0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadCollaboratorsItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadCollaboratorsItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts index 9ecfb068be9..c3b46f1b797 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadDiscordMetaUser } from './CreateCommentResponseThreadDiscordMetaUser'; - export declare const CreateCommentResponseThreadDiscordMeta: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadDiscordMeta.Raw, CommonApi.CreateCommentResponseThreadDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.js index 1d95d550da8..95b4930a2a0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadDiscordMetaUser } from './CreateCommentResponseThreadDiscordMetaUser'; - export const CreateCommentResponseThreadDiscordMeta = core.serialization.object( { user: CreateCommentResponseThreadDiscordMetaUser, diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.d.ts index e05bc9f49de..e7d6804313f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadDiscordMetaUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadDiscordMetaUser.Raw, CommonApi.CreateCommentResponseThreadDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.js index 8bfd4e96c97..4a5437a6791 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts index 57d4ecff405..0c917a8d428 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadLinksItemSource } from './CreateCommentResponseThreadLinksItemSource'; - export declare const CreateCommentResponseThreadLinksItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadLinksItem.Raw, CommonApi.CreateCommentResponseThreadLinksItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.js index f7767c83579..763339daa8b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadLinksItemSource } from './CreateCommentResponseThreadLinksItemSource'; - export const CreateCommentResponseThreadLinksItem = core.serialization.object({ source: CreateCommentResponseThreadLinksItemSource, identifier: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.d.ts index d087244f639..6d56231c5ec 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadLinksItemSource: core.serialization.Schema< serializers.CreateCommentResponseThreadLinksItemSource.Raw, CommonApi.CreateCommentResponseThreadLinksItemSource diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.js index 3b798d6efbc..1f10e364183 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadLinksItemSource.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadLinksItemSource = core.serialization.enum_([ 'snapshot', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts index 6ef63903b89..ed75668bf75 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadReactionsItemAddress } from './CreateCommentResponseThreadReactionsItemAddress'; - export declare const CreateCommentResponseThreadReactionsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItem.Raw, CommonApi.CreateCommentResponseThreadReactionsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.js index 635256cb993..7e280790ba0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadReactionsItemAddress } from './CreateCommentResponseThreadReactionsItemAddress'; - export const CreateCommentResponseThreadReactionsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts index 2ae95c26ad5..14743c4116a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentResponseThreadReactionsItemAddressRole } from './CreateCommentResponseThreadReactionsItemAddressRole'; import { CreateCommentResponseThreadReactionsItemAddressUser } from './CreateCommentResponseThreadReactionsItemAddressUser'; import { CreateCommentResponseThreadReactionsItemAddressWalletId } from './CreateCommentResponseThreadReactionsItemAddressWalletId'; - export declare const CreateCommentResponseThreadReactionsItemAddress: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItemAddress.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.js index dc02490e8d5..288a63b6bcf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseThreadReactionsItemAddressRole } from './CreateCommentResponseThreadReactionsItemAddressRole'; import { CreateCommentResponseThreadReactionsItemAddressUser } from './CreateCommentResponseThreadReactionsItemAddressUser'; import { CreateCommentResponseThreadReactionsItemAddressWalletId } from './CreateCommentResponseThreadReactionsItemAddressWalletId'; - export const CreateCommentResponseThreadReactionsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.d.ts index d7447a0bfe9..d2246128379 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadReactionsItemAddressRole: core.serialization.Schema< serializers.CreateCommentResponseThreadReactionsItemAddressRole.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.js index 691179c723f..85af626d898 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadReactionsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts index 71034917903..ad463157d60 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentResponseThreadReactionsItemAddressUserApiKey } from './Cre import { CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval } from './CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval'; import { CreateCommentResponseThreadReactionsItemAddressUserProfile } from './CreateCommentResponseThreadReactionsItemAddressUserProfile'; import { CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem } from './CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem'; - export declare const CreateCommentResponseThreadReactionsItemAddressUser: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItemAddressUser.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.js index 16c7b62bc07..c08764d85c3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUser.js @@ -6,7 +6,6 @@ import { CreateCommentResponseThreadReactionsItemAddressUserApiKey } from './Cre import { CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval } from './CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval'; import { CreateCommentResponseThreadReactionsItemAddressUserProfile } from './CreateCommentResponseThreadReactionsItemAddressUserProfile'; import { CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem } from './CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem'; - export const CreateCommentResponseThreadReactionsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..d19aa76dcb1 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentResponseThreadReactionsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentResponseThreadReactionsItemAddressUserApiKey.Raw, + CommonApi.CreateCommentResponseThreadReactionsItemAddressUserApiKey +>; +export declare namespace CreateCommentResponseThreadReactionsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..665163b9ff1 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentResponseThreadReactionsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts index bcacdf739d4..4f1a3913973 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js index 24c9eb5dbcd..bc2165457fe 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts index dcc95b5e6a6..c515e993017 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage } from './CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage'; - export declare const CreateCommentResponseThreadReactionsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItemAddressUserProfile.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.js index d2214fbf0ac..c58fd60935f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage } from './CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage'; - export const CreateCommentResponseThreadReactionsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts index 5803abc47a2..07fe04661ff 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js index 75e107a5cf5..6cee406ba40 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts index f9674aabdcb..1963d7c64af 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js index 5983f229a88..ee9c2d854bf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadReactionsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.d.ts index cbd9d79b26d..21b3888fefc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadReactionsItemAddressWalletId: core.serialization.Schema< serializers.CreateCommentResponseThreadReactionsItemAddressWalletId.Raw, CommonApi.CreateCommentResponseThreadReactionsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.js index 91243cd87f5..500846e7dfc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadReactionsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadReactionsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.d.ts index 8af7aae5900..2d9d2b80dff 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadSearch: core.serialization.Schema< serializers.CreateCommentResponseThreadSearch.Raw, CommonApi.CreateCommentResponseThreadSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.js index d3f6d9d15d3..5324a81091d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.d.ts index a36152320be..945a6eafb6e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadThreadVersionHistoriesItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadThreadVersionHistoriesItem.Raw, CommonApi.CreateCommentResponseThreadThreadVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.js index 64ad3c5081e..df4ebb9c869 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadThreadVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadThreadVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.d.ts index be0e9c6ef71..96da7ce1abf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentResponseThreadTopicContestTopicsItem } from './CreateCommentResponseThreadTopicContestTopicsItem'; import { CreateCommentResponseThreadTopicWeightedVoting } from './CreateCommentResponseThreadTopicWeightedVoting'; - export declare const CreateCommentResponseThreadTopic: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadTopic.Raw, CommonApi.CreateCommentResponseThreadTopic diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.js index d134960a1d0..a8960844c2e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommentResponseThreadTopicContestTopicsItem } from './CreateCommentResponseThreadTopicContestTopicsItem'; import { CreateCommentResponseThreadTopicWeightedVoting } from './CreateCommentResponseThreadTopicWeightedVoting'; - export const CreateCommentResponseThreadTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.d.ts index 2ea89b7962f..4c8f3a4c095 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateCommentResponseThreadTopicContestTopicsItem.Raw, CommonApi.CreateCommentResponseThreadTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.js index e1f4ae0e6f4..71b69bfea0f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.d.ts index 31b91da90eb..5f71c485cf3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentResponseThreadTopicWeightedVoting: core.serialization.Schema< serializers.CreateCommentResponseThreadTopicWeightedVoting.Raw, CommonApi.CreateCommentResponseThreadTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.js index 7713c773c5f..945418b964f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/comment/types/CreateCommentResponseThreadTopicWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentResponseThreadTopicWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.d.ts b/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.d.ts index 8260bd0a665..da9ce4b2f44 100644 --- a/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const DeleteCommentResponse: core.serialization.ObjectSchema< serializers.DeleteCommentResponse.Raw, CommonApi.DeleteCommentResponse diff --git a/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.js b/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.js index 5bec2396453..30706b64d21 100644 --- a/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.js +++ b/libs/api-client/src/serialization/resources/comment/types/DeleteCommentResponse.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const DeleteCommentResponse = core.serialization.object({ commentId: core.serialization.property( 'comment_id', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.d.ts index 1a7562d652b..84d9ec9d0a0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsRequestOrderDirection: core.serialization.Schema< serializers.GetCommentsRequestOrderDirection.Raw, CommonApi.GetCommentsRequestOrderDirection diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.js index 959c92ffbfe..914172da896 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsRequestOrderDirection.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsRequestOrderDirection = core.serialization.enum_([ 'ASC', 'DESC', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.d.ts index 7c94d3c22cc..515edeb4abc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItem } from './GetCommentsResponseResultsItem'; - export declare const GetCommentsResponse: core.serialization.ObjectSchema< serializers.GetCommentsResponse.Raw, CommonApi.GetCommentsResponse diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.js index a65747976db..4b524a8ca34 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItem } from './GetCommentsResponseResultsItem'; - export const GetCommentsResponse = core.serialization.object({ limit: core.serialization.number(), page: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.d.ts index d7674357662..8c6d73621d4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.d.ts @@ -10,7 +10,6 @@ import { GetCommentsResponseResultsItemDiscordMeta } from './GetCommentsResponse import { GetCommentsResponseResultsItemReaction } from './GetCommentsResponseResultsItemReaction'; import { GetCommentsResponseResultsItemSearch } from './GetCommentsResponseResultsItemSearch'; import { GetCommentsResponseResultsItemThread } from './GetCommentsResponseResultsItemThread'; - export declare const GetCommentsResponseResultsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItem.Raw, CommonApi.GetCommentsResponseResultsItem @@ -21,7 +20,6 @@ export declare namespace GetCommentsResponseResultsItem { thread_id: number; address_id: number; text: string; - plaintext: string; parent_id?: string | null; content_url?: string | null; canvas_signed_data?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.js index a5069345d05..d271fa83e4a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItem.js @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemDiscordMeta } from './GetCommentsResponse import { GetCommentsResponseResultsItemReaction } from './GetCommentsResponseResultsItemReaction'; import { GetCommentsResponseResultsItemSearch } from './GetCommentsResponseResultsItemSearch'; import { GetCommentsResponseResultsItemThread } from './GetCommentsResponseResultsItemThread'; - export const GetCommentsResponseResultsItem = core.serialization.object({ id: core.serialization.number().optional(), threadId: core.serialization.property( @@ -20,7 +19,6 @@ export const GetCommentsResponseResultsItem = core.serialization.object({ core.serialization.number(), ), text: core.serialization.string(), - plaintext: core.serialization.string(), parentId: core.serialization.property( 'parent_id', core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts index 8d6fa0ecfe0..63976a8447f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemAddressRole } from './GetCommentsResponseResultsItemAddressRole'; import { GetCommentsResponseResultsItemAddressUser } from './GetCommentsResponseResultsItemAddressUser'; import { GetCommentsResponseResultsItemAddressWalletId } from './GetCommentsResponseResultsItemAddressWalletId'; - export declare const GetCommentsResponseResultsItemAddress: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemAddress.Raw, CommonApi.GetCommentsResponseResultsItemAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.js index d3ad551f7e6..ff74679220e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemAddressRole } from './GetCommentsResponseResultsItemAddressRole'; import { GetCommentsResponseResultsItemAddressUser } from './GetCommentsResponseResultsItemAddressUser'; import { GetCommentsResponseResultsItemAddressWalletId } from './GetCommentsResponseResultsItemAddressWalletId'; - export const GetCommentsResponseResultsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.d.ts index 387814649b2..985346966d5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemAddressRole: core.serialization.Schema< serializers.GetCommentsResponseResultsItemAddressRole.Raw, CommonApi.GetCommentsResponseResultsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.js index 8f4e357c671..17593476506 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts index 4f833a106a1..2c13cb0ac4d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemAddressUserApiKey } from './GetCommentsRe import { GetCommentsResponseResultsItemAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemAddressUserProfile } from './GetCommentsResponseResultsItemAddressUserProfile'; import { GetCommentsResponseResultsItemAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemAddressUserProfileTagsItem'; - export declare const GetCommentsResponseResultsItemAddressUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemAddressUser.Raw, CommonApi.GetCommentsResponseResultsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.js index 1c6b7714833..942d6ad37ad 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUser.js @@ -6,7 +6,6 @@ import { GetCommentsResponseResultsItemAddressUserApiKey } from './GetCommentsRe import { GetCommentsResponseResultsItemAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemAddressUserProfile } from './GetCommentsResponseResultsItemAddressUserProfile'; import { GetCommentsResponseResultsItemAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemAddressUserProfileTagsItem'; - export const GetCommentsResponseResultsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..237069da68e --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommentsResponseResultsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommentsResponseResultsItemAddressUserApiKey.Raw, + CommonApi.GetCommentsResponseResultsItemAddressUserApiKey +>; +export declare namespace GetCommentsResponseResultsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js new file mode 100644 index 00000000000..5c69b370815 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommentsResponseResultsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.d.ts index 6f027f04291..ea9fac9135a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.Raw, CommonApi.GetCommentsResponseResultsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.js index 61f0ac95c44..f630a195d97 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts index 3d03782cce3..c14fa6896a0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemAddressUserProfileBackgroundImage'; - export declare const GetCommentsResponseResultsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemAddressUserProfile.Raw, CommonApi.GetCommentsResponseResultsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.js index bce0ef197f4..35ae5360481 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemAddressUserProfileBackgroundImage'; - export const GetCommentsResponseResultsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.d.ts index 5abda0fcac3..0f2175385b2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.Raw, CommonApi.GetCommentsResponseResultsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.js index 7b49fa8e597..9cefc7f87f6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.d.ts index 40ae8ee274f..d6be09a1108 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemAddressUserProfileTagsItem.Raw, CommonApi.GetCommentsResponseResultsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.js index 1d520c96eff..6cb7443a961 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.d.ts index e2244f5bc53..3e68d8b99a2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemAddressWalletId: core.serialization.Schema< serializers.GetCommentsResponseResultsItemAddressWalletId.Raw, CommonApi.GetCommentsResponseResultsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.js index 60a37930a6e..053a3bfdbff 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.d.ts index e60de510ad9..76ba8f176d8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemCommentVersionHistoriesItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemCommentVersionHistoriesItem.Raw, CommonApi.GetCommentsResponseResultsItemCommentVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.js index 5a2068935a2..64c289800d3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemCommentVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemCommentVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts index c882270b525..fc458f59228 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemDiscordMetaUser } from './GetCommentsResponseResultsItemDiscordMetaUser'; - export declare const GetCommentsResponseResultsItemDiscordMeta: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemDiscordMeta.Raw, CommonApi.GetCommentsResponseResultsItemDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.js index 24b6d854a03..ad31b24efd9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemDiscordMetaUser } from './GetCommentsResponseResultsItemDiscordMetaUser'; - export const GetCommentsResponseResultsItemDiscordMeta = core.serialization.object({ user: GetCommentsResponseResultsItemDiscordMetaUser, diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.d.ts index 8edf40a17d0..d5c0330be48 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemDiscordMetaUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemDiscordMetaUser.Raw, CommonApi.GetCommentsResponseResultsItemDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.js index ce48ed1b6c0..c00ceee0c58 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts index 94e389d2c86..dd4b567e5b4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemReactionAddress } from './GetCommentsResponseResultsItemReactionAddress'; - export declare const GetCommentsResponseResultsItemReaction: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReaction.Raw, CommonApi.GetCommentsResponseResultsItemReaction diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.js index 0984bed2dc4..89fc878aad4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReaction.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemReactionAddress } from './GetCommentsResponseResultsItemReactionAddress'; - export const GetCommentsResponseResultsItemReaction = core.serialization.object( { id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts index cba24738a33..f6415b3a9e9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemReactionAddressRole } from './GetCommentsResponseResultsItemReactionAddressRole'; import { GetCommentsResponseResultsItemReactionAddressUser } from './GetCommentsResponseResultsItemReactionAddressUser'; import { GetCommentsResponseResultsItemReactionAddressWalletId } from './GetCommentsResponseResultsItemReactionAddressWalletId'; - export declare const GetCommentsResponseResultsItemReactionAddress: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReactionAddress.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.js index e0c675756d0..613c1d47371 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemReactionAddressRole } from './GetCommentsResponseResultsItemReactionAddressRole'; import { GetCommentsResponseResultsItemReactionAddressUser } from './GetCommentsResponseResultsItemReactionAddressUser'; import { GetCommentsResponseResultsItemReactionAddressWalletId } from './GetCommentsResponseResultsItemReactionAddressWalletId'; - export const GetCommentsResponseResultsItemReactionAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.d.ts index 54afe007844..e126b67d2ff 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemReactionAddressRole: core.serialization.Schema< serializers.GetCommentsResponseResultsItemReactionAddressRole.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.js index 62b02a3da5e..e8fcea6b5c4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemReactionAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts index f856d6fe15f..b475c8bf2ef 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.d.ts @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemReactionAddressUserApiKey } from './GetCo import { GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemReactionAddressUserProfile } from './GetCommentsResponseResultsItemReactionAddressUserProfile'; import { GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem'; - export declare const GetCommentsResponseResultsItemReactionAddressUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReactionAddressUser.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.js index 725fcb2264c..5e6d15ba81f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUser.js @@ -6,7 +6,6 @@ import { GetCommentsResponseResultsItemReactionAddressUserApiKey } from './GetCo import { GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemReactionAddressUserProfile } from './GetCommentsResponseResultsItemReactionAddressUserProfile'; import { GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem'; - export const GetCommentsResponseResultsItemReactionAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..d9391150f57 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommentsResponseResultsItemReactionAddressUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommentsResponseResultsItemReactionAddressUserApiKey.Raw, + CommonApi.GetCommentsResponseResultsItemReactionAddressUserApiKey +>; +export declare namespace GetCommentsResponseResultsItemReactionAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js new file mode 100644 index 00000000000..9ef95430875 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommentsResponseResultsItemReactionAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.d.ts index 0b94d9e38ef..f0c8f52396f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.js index 6f0820f80fb..d00a294ad83 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemReactionAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts index a1eb63a4f86..736a471a74a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage'; - export declare const GetCommentsResponseResultsItemReactionAddressUserProfile: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReactionAddressUserProfile.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.js index 63e59e4574a..0a9fdcff826 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage'; - export const GetCommentsResponseResultsItemReactionAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.d.ts index ec78934e0cf..1409c2afe99 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.js index 283a0b574ff..21f870f65b1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemReactionAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.d.ts index 3e0b6ef733a..029c9fd84d3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.js index baff0543588..0de69d3548e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemReactionAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.d.ts index fa0fe904fab..5aa7e60dcfe 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemReactionAddressWalletId: core.serialization.Schema< serializers.GetCommentsResponseResultsItemReactionAddressWalletId.Raw, CommonApi.GetCommentsResponseResultsItemReactionAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.js index fa40d54932f..5cc8a4fe043 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemReactionAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemReactionAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.d.ts index 6ac625ac286..8c21cf1ff07 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemSearch: core.serialization.Schema< serializers.GetCommentsResponseResultsItemSearch.Raw, CommonApi.GetCommentsResponseResultsItemSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.js index ff7695725d1..f230521dc2b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts index 844bf98304e..2643d10b578 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.d.ts @@ -12,7 +12,6 @@ import { GetCommentsResponseResultsItemThreadReactionsItem } from './GetComments import { GetCommentsResponseResultsItemThreadSearch } from './GetCommentsResponseResultsItemThreadSearch'; import { GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem } from './GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem'; import { GetCommentsResponseResultsItemThreadTopic } from './GetCommentsResponseResultsItemThreadTopic'; - export declare const GetCommentsResponseResultsItemThread: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThread.Raw, CommonApi.GetCommentsResponseResultsItemThread @@ -23,14 +22,13 @@ export declare namespace GetCommentsResponseResultsItemThread { address_id: number; title: string; kind: string; - stage: string; + stage?: string | null; body?: string | null; - plaintext?: string | null; url?: string | null; topic_id?: number | null; pinned?: boolean | null; community_id: string; - view_count: number; + view_count?: number | null; links?: GetCommentsResponseResultsItemThreadLinksItem.Raw[] | null; content_url?: string | null; read_only?: boolean | null; @@ -46,9 +44,9 @@ export declare namespace GetCommentsResponseResultsItemThread { archived_at?: string | null; locked_at?: string | null; discord_meta?: GetCommentsResponseResultsItemThreadDiscordMeta.Raw | null; - reaction_count: number; - reaction_weights_sum: number; - comment_count: number; + reaction_count?: number | null; + reaction_weights_sum?: number | null; + comment_count?: number | null; activity_rank_date?: string | null; created_by?: string | null; profile_name?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.js index 56bf3c99aaa..0b4ec4f425e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThread.js @@ -10,7 +10,6 @@ import { GetCommentsResponseResultsItemThreadReactionsItem } from './GetComments import { GetCommentsResponseResultsItemThreadSearch } from './GetCommentsResponseResultsItemThreadSearch'; import { GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem } from './GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem'; import { GetCommentsResponseResultsItemThreadTopic } from './GetCommentsResponseResultsItemThreadTopic'; - export const GetCommentsResponseResultsItemThread = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( @@ -19,9 +18,8 @@ export const GetCommentsResponseResultsItemThread = core.serialization.object({ ), title: core.serialization.string(), kind: core.serialization.string(), - stage: core.serialization.string(), + stage: core.serialization.string().optional(), body: core.serialization.string().optional(), - plaintext: core.serialization.string().optional(), url: core.serialization.string().optional(), topicId: core.serialization.property( 'topic_id', @@ -34,7 +32,7 @@ export const GetCommentsResponseResultsItemThread = core.serialization.object({ ), viewCount: core.serialization.property( 'view_count', - core.serialization.number(), + core.serialization.number().optional(), ), links: core.serialization .list(GetCommentsResponseResultsItemThreadLinksItem) @@ -97,15 +95,15 @@ export const GetCommentsResponseResultsItemThread = core.serialization.object({ ), reactionCount: core.serialization.property( 'reaction_count', - core.serialization.number(), + core.serialization.number().optional(), ), reactionWeightsSum: core.serialization.property( 'reaction_weights_sum', - core.serialization.number(), + core.serialization.number().optional(), ), commentCount: core.serialization.property( 'comment_count', - core.serialization.number(), + core.serialization.number().optional(), ), activityRankDate: core.serialization.property( 'activity_rank_date', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts index 3b0ed9d6a5d..f4a53c50f22 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadAddressRole } from './GetCommentsResponseResultsItemThreadAddressRole'; import { GetCommentsResponseResultsItemThreadAddressUser } from './GetCommentsResponseResultsItemThreadAddressUser'; import { GetCommentsResponseResultsItemThreadAddressWalletId } from './GetCommentsResponseResultsItemThreadAddressWalletId'; - export declare const GetCommentsResponseResultsItemThreadAddress: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadAddress.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.js index 2d63e4e7888..c0e47df7780 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadAddressRole } from './GetCommentsResponseResultsItemThreadAddressRole'; import { GetCommentsResponseResultsItemThreadAddressUser } from './GetCommentsResponseResultsItemThreadAddressUser'; import { GetCommentsResponseResultsItemThreadAddressWalletId } from './GetCommentsResponseResultsItemThreadAddressWalletId'; - export const GetCommentsResponseResultsItemThreadAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.d.ts index 6e934dd374b..c13cd0bee5b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadAddressRole: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadAddressRole.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.js index af9a5dd89ce..3d196516c9b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts index 90c8fad1cd7..7788a76a7a1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.d.ts @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemThreadAddressUserApiKey } from './GetComm import { GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadAddressUserProfile } from './GetCommentsResponseResultsItemThreadAddressUserProfile'; import { GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem'; - export declare const GetCommentsResponseResultsItemThreadAddressUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadAddressUser.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.js index 9b97bf38e8e..7dcde017574 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUser.js @@ -6,7 +6,6 @@ import { GetCommentsResponseResultsItemThreadAddressUserApiKey } from './GetComm import { GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadAddressUserProfile } from './GetCommentsResponseResultsItemThreadAddressUserProfile'; import { GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem'; - export const GetCommentsResponseResultsItemThreadAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..f9371664c6d --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommentsResponseResultsItemThreadAddressUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommentsResponseResultsItemThreadAddressUserApiKey.Raw, + CommonApi.GetCommentsResponseResultsItemThreadAddressUserApiKey +>; +export declare namespace GetCommentsResponseResultsItemThreadAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js new file mode 100644 index 00000000000..fe10ef95ad5 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommentsResponseResultsItemThreadAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.d.ts index dafdf0d4054..90e5963d9a3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.js index a9ff9f2fe30..6d23be05dff 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts index 5a7808f66e6..71b4aa4aecb 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage'; - export declare const GetCommentsResponseResultsItemThreadAddressUserProfile: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadAddressUserProfile.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.js index 2c9ce47a60f..473a17c7591 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage'; - export const GetCommentsResponseResultsItemThreadAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.d.ts index 30db751b02a..da999893c08 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.js index fdf4fc3aa10..41caabaca58 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.d.ts index 91c30e7e480..8a0ee35d728 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.js index 51c71aebdc1..d30501b45d7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.d.ts index 4ea25e4bfec..060dfc1637b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadAddressWalletId: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadAddressWalletId.Raw, CommonApi.GetCommentsResponseResultsItemThreadAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.js index 57980fa6502..b9f34ddd5c3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts index cf6feabeda8..dd6d40041cd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemRole } from './GetCommentsResponseResultsItemThreadCollaboratorsItemRole'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUser } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUser'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId } from './GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.js index f3c7a65eb61..6d19a3ef822 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemRole } from './GetCommentsResponseResultsItemThreadCollaboratorsItemRole'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUser } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUser'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId } from './GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.d.ts index fbf2ab2f2de..53d926e73e5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemRole: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemRole.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemRole diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.js index 913de751f04..def50b5584d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts index b29236b808e..c3e2ef6c35b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.d.ts @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey } from import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUser.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.js index e9dc15003bf..cbdaba598cc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUser.js @@ -6,7 +6,6 @@ import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey } from import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..2a49d566cb2 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.Raw, + CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey +>; +export declare namespace GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..8f06a70f53d --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommentsResponseResultsItemThreadCollaboratorsItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.d.ts index ac028d1ff80..67c15bef3c9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.js index 41a46705624..d0a17223236 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts index 0820627bd4d..004191cc366 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.js index 2beffbe6797..d71b0108aab 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.d.ts index ca2a47bfb8a..1779b3085bb 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.js index 4bd9f74f190..46468acd06b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.d.ts index c9f1271cf3c..c377d78fe5f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.js index 57785eb5568..0dac00db66b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.d.ts index 590c3064b1b..d94d4e8dc3a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.Raw, CommonApi.GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.js index 15d4aa9e566..0329b2d936d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadCollaboratorsItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts index 531da065cae..0d871ccf491 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadDiscordMetaUser } from './GetCommentsResponseResultsItemThreadDiscordMetaUser'; - export declare const GetCommentsResponseResultsItemThreadDiscordMeta: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadDiscordMeta.Raw, CommonApi.GetCommentsResponseResultsItemThreadDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.js index 48e5a6eac05..e6562e92cd5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadDiscordMetaUser } from './GetCommentsResponseResultsItemThreadDiscordMetaUser'; - export const GetCommentsResponseResultsItemThreadDiscordMeta = core.serialization.object({ user: GetCommentsResponseResultsItemThreadDiscordMetaUser, diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.d.ts index a520ae8b4fd..75ad19554c9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadDiscordMetaUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadDiscordMetaUser.Raw, CommonApi.GetCommentsResponseResultsItemThreadDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.js index 186a6f79aa4..9d3d1d8482a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts index 8391c41b8ad..1ee7c38ee65 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadLinksItemSource } from './GetCommentsResponseResultsItemThreadLinksItemSource'; - export declare const GetCommentsResponseResultsItemThreadLinksItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadLinksItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadLinksItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.js index 7c2af7a0f76..8f57d1cdccc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadLinksItemSource } from './GetCommentsResponseResultsItemThreadLinksItemSource'; - export const GetCommentsResponseResultsItemThreadLinksItem = core.serialization.object({ source: GetCommentsResponseResultsItemThreadLinksItemSource, diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.d.ts index 17f96996052..676f5c83d4d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadLinksItemSource: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadLinksItemSource.Raw, CommonApi.GetCommentsResponseResultsItemThreadLinksItemSource diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.js index 922149989f8..881b8f1685f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadLinksItemSource.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadLinksItemSource = core.serialization.enum_([ 'snapshot', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts index b34c035750f..bdeb390054d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadReactionsItemAddress } from './GetCommentsResponseResultsItemThreadReactionsItemAddress'; - export declare const GetCommentsResponseResultsItemThreadReactionsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.js index ab971fc1f77..5290a955be8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadReactionsItemAddress } from './GetCommentsResponseResultsItemThreadReactionsItemAddress'; - export const GetCommentsResponseResultsItemThreadReactionsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts index 9f58e9af8da..f1bd196cc15 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressRole } from './GetCommentsResponseResultsItemThreadReactionsItemAddressRole'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUser } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUser'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId } from './GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddress: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddress.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.js index 7d499c779ff..59bedea7d5f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressRole } from './GetCommentsResponseResultsItemThreadReactionsItemAddressRole'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUser } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUser'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId } from './GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.d.ts index 4ecb7a7fc4f..9d7c47572ee 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressRole: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressRole.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.js index 831731b2f0a..0bc6cb1906e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts index 46022e43f2f..7c487f8a2ec 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey } fr import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUser: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUser.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.js index 61bb84d76e1..b297b6348d4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUser.js @@ -6,7 +6,6 @@ import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey } fr import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..9428384d37e --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.Raw, + CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey +>; +export declare namespace GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..6451fe527e7 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommentsResponseResultsItemThreadReactionsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.d.ts index 0bd59d2254c..c90cc1c8d50 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.js index 4fdd97f003a..19532f41cb7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts index 77505f6ad98..81e2ea72fd2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.js index 38f4fbe1631..1c6950161d3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage } from './GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.d.ts index 08c6c24ea07..c53f7cfe8b3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.js index a3aa81926a5..317762ed81f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.d.ts index 550a17820a0..e77be48f6a8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.js index 7f5c4cc87ad..05ca78c02c1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.d.ts index 73eb5dea06f..458a7626cdc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.Raw, CommonApi.GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.js index 3dcb050ea4d..3109c0e8482 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadReactionsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.d.ts index 18d21d48fe9..8e75fd6af35 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadSearch: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadSearch.Raw, CommonApi.GetCommentsResponseResultsItemThreadSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.js index 7b424fa0e5a..7eb980b6722 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.d.ts index 119226bd11c..51c01287b08 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.js index 69a58629aef..53407ef21e7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadThreadVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts index 18635c931aa..4370e1c67f7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommentsResponseResultsItemThreadTopicContestTopicsItem } from './GetCommentsResponseResultsItemThreadTopicContestTopicsItem'; import { GetCommentsResponseResultsItemThreadTopicWeightedVoting } from './GetCommentsResponseResultsItemThreadTopicWeightedVoting'; - export declare const GetCommentsResponseResultsItemThreadTopic: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadTopic.Raw, CommonApi.GetCommentsResponseResultsItemThreadTopic diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.js index b48cab60400..7a6df1568a7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommentsResponseResultsItemThreadTopicContestTopicsItem } from './GetCommentsResponseResultsItemThreadTopicContestTopicsItem'; import { GetCommentsResponseResultsItemThreadTopicWeightedVoting } from './GetCommentsResponseResultsItemThreadTopicWeightedVoting'; - export const GetCommentsResponseResultsItemThreadTopic = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.d.ts index a3681256efe..b257d3c171d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.GetCommentsResponseResultsItemThreadTopicContestTopicsItem.Raw, CommonApi.GetCommentsResponseResultsItemThreadTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.js index 012cc40ded0..de0f36fdd60 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.d.ts index e38e9aca06d..3acd880d9d0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommentsResponseResultsItemThreadTopicWeightedVoting: core.serialization.Schema< serializers.GetCommentsResponseResultsItemThreadTopicWeightedVoting.Raw, CommonApi.GetCommentsResponseResultsItemThreadTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.js index 8b70784d1e8..2b37bf956a5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/comment/types/GetCommentsResponseResultsItemThreadTopicWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommentsResponseResultsItemThreadTopicWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.d.ts index aad95608990..a2a6589165f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.d.ts @@ -10,7 +10,6 @@ import { UpdateCommentResponseDiscordMeta } from './UpdateCommentResponseDiscord import { UpdateCommentResponseReaction } from './UpdateCommentResponseReaction'; import { UpdateCommentResponseSearch } from './UpdateCommentResponseSearch'; import { UpdateCommentResponseThread } from './UpdateCommentResponseThread'; - export declare const UpdateCommentResponse: core.serialization.ObjectSchema< serializers.UpdateCommentResponse.Raw, CommonApi.UpdateCommentResponse @@ -21,7 +20,6 @@ export declare namespace UpdateCommentResponse { thread_id: number; address_id: number; text: string; - plaintext: string; parent_id?: string | null; content_url?: string | null; canvas_signed_data?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.js index 7cfc3354faa..709471e58f1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponse.js @@ -8,7 +8,6 @@ import { UpdateCommentResponseDiscordMeta } from './UpdateCommentResponseDiscord import { UpdateCommentResponseReaction } from './UpdateCommentResponseReaction'; import { UpdateCommentResponseSearch } from './UpdateCommentResponseSearch'; import { UpdateCommentResponseThread } from './UpdateCommentResponseThread'; - export const UpdateCommentResponse = core.serialization.object({ id: core.serialization.number().optional(), threadId: core.serialization.property( @@ -20,7 +19,6 @@ export const UpdateCommentResponse = core.serialization.object({ core.serialization.number(), ), text: core.serialization.string(), - plaintext: core.serialization.string(), parentId: core.serialization.property( 'parent_id', core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.d.ts index e3468e791e2..862f7b93902 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommentResponseAddressRole } from './UpdateCommentResponseAddressRole'; import { UpdateCommentResponseAddressUser } from './UpdateCommentResponseAddressUser'; import { UpdateCommentResponseAddressWalletId } from './UpdateCommentResponseAddressWalletId'; - export declare const UpdateCommentResponseAddress: core.serialization.ObjectSchema< serializers.UpdateCommentResponseAddress.Raw, CommonApi.UpdateCommentResponseAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.js index d8337bb2fc7..a08affbb5a6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseAddressRole } from './UpdateCommentResponseAddressRole'; import { UpdateCommentResponseAddressUser } from './UpdateCommentResponseAddressUser'; import { UpdateCommentResponseAddressWalletId } from './UpdateCommentResponseAddressWalletId'; - export const UpdateCommentResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.d.ts index 0072753e081..e3fa034dd0c 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseAddressRole: core.serialization.Schema< serializers.UpdateCommentResponseAddressRole.Raw, CommonApi.UpdateCommentResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.js index 45f63157778..2fa157216ba 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.d.ts index 8281f82727b..d7803095064 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommentResponseAddressUserApiKey } from './UpdateCommentResponseA import { UpdateCommentResponseAddressUserEmailNotificationInterval } from './UpdateCommentResponseAddressUserEmailNotificationInterval'; import { UpdateCommentResponseAddressUserProfile } from './UpdateCommentResponseAddressUserProfile'; import { UpdateCommentResponseAddressUserProfileTagsItem } from './UpdateCommentResponseAddressUserProfileTagsItem'; - export declare const UpdateCommentResponseAddressUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseAddressUser.Raw, CommonApi.UpdateCommentResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.js index 2ab9e1ec743..c7a095a3419 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUser.js @@ -6,7 +6,6 @@ import { UpdateCommentResponseAddressUserApiKey } from './UpdateCommentResponseA import { UpdateCommentResponseAddressUserEmailNotificationInterval } from './UpdateCommentResponseAddressUserEmailNotificationInterval'; import { UpdateCommentResponseAddressUserProfile } from './UpdateCommentResponseAddressUserProfile'; import { UpdateCommentResponseAddressUserProfileTagsItem } from './UpdateCommentResponseAddressUserProfileTagsItem'; - export const UpdateCommentResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), email: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..0441f8a4ae9 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommentResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommentResponseAddressUserApiKey.Raw, + CommonApi.UpdateCommentResponseAddressUserApiKey +>; +export declare namespace UpdateCommentResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js new file mode 100644 index 00000000000..91ea841e0b0 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserApiKey.js @@ -0,0 +1,25 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommentResponseAddressUserApiKey = core.serialization.object( + { + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }, +); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.d.ts index c7208922389..830aa88fb2a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommentResponseAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateCommentResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.js index e99427f537a..3dc407d50bd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts index b298d5599cc..efafe3b7131 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseAddressUserProfileBackgroundImage } from './UpdateCommentResponseAddressUserProfileBackgroundImage'; - export declare const UpdateCommentResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommentResponseAddressUserProfile.Raw, CommonApi.UpdateCommentResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.js index 2f1219e80a4..b6de1c42d17 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseAddressUserProfileBackgroundImage } from './UpdateCommentResponseAddressUserProfileBackgroundImage'; - export const UpdateCommentResponseAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.d.ts index cdf334188c4..fa2536dfe40 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommentResponseAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateCommentResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.js index b3d9648e4fa..4745f0daab9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.d.ts index 6c868da8988..6f06ea1e5a6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseAddressUserProfileTagsItem.Raw, CommonApi.UpdateCommentResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.js index bc1099e6744..ff2f79c3397 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.d.ts index f00922531d5..89ae2d9cfad 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseAddressWalletId: core.serialization.Schema< serializers.UpdateCommentResponseAddressWalletId.Raw, CommonApi.UpdateCommentResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.js index 589941951e0..695640f5f1e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseAddressWalletId = core.serialization.enum_([ 'magic', 'polkadot', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.d.ts index a3e4ee31c1b..4537503bccd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseCommentVersionHistoriesItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseCommentVersionHistoriesItem.Raw, CommonApi.UpdateCommentResponseCommentVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.js index 085dc2aafe6..6bd56aadaf4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseCommentVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseCommentVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts index b1d9917b157..1458a695de1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseDiscordMetaUser } from './UpdateCommentResponseDiscordMetaUser'; - export declare const UpdateCommentResponseDiscordMeta: core.serialization.ObjectSchema< serializers.UpdateCommentResponseDiscordMeta.Raw, CommonApi.UpdateCommentResponseDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.js index 68e9d7655b2..a615c1c43fe 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseDiscordMetaUser } from './UpdateCommentResponseDiscordMetaUser'; - export const UpdateCommentResponseDiscordMeta = core.serialization.object({ user: UpdateCommentResponseDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.d.ts index 58ca46da242..2c4ea51753b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseDiscordMetaUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseDiscordMetaUser.Raw, CommonApi.UpdateCommentResponseDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.js index ade9e63371e..f379f5d531b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.d.ts index a199b2ff4e4..824b6c09759 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseReactionAddress } from './UpdateCommentResponseReactionAddress'; - export declare const UpdateCommentResponseReaction: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReaction.Raw, CommonApi.UpdateCommentResponseReaction diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.js index 08d185e5f1f..2036354592b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReaction.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseReactionAddress } from './UpdateCommentResponseReactionAddress'; - export const UpdateCommentResponseReaction = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts index a1064ee259c..2d2a62226c1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommentResponseReactionAddressRole } from './UpdateCommentResponseReactionAddressRole'; import { UpdateCommentResponseReactionAddressUser } from './UpdateCommentResponseReactionAddressUser'; import { UpdateCommentResponseReactionAddressWalletId } from './UpdateCommentResponseReactionAddressWalletId'; - export declare const UpdateCommentResponseReactionAddress: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReactionAddress.Raw, CommonApi.UpdateCommentResponseReactionAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.js index 6adf10f0c08..dcc417487ea 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseReactionAddressRole } from './UpdateCommentResponseReactionAddressRole'; import { UpdateCommentResponseReactionAddressUser } from './UpdateCommentResponseReactionAddressUser'; import { UpdateCommentResponseReactionAddressWalletId } from './UpdateCommentResponseReactionAddressWalletId'; - export const UpdateCommentResponseReactionAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.d.ts index 2740aab401a..37104333d06 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseReactionAddressRole: core.serialization.Schema< serializers.UpdateCommentResponseReactionAddressRole.Raw, CommonApi.UpdateCommentResponseReactionAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.js index 8aa45433a68..d2b42868520 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseReactionAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts index 7eb7e07a7ef..7768bdfdee6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommentResponseReactionAddressUserApiKey } from './UpdateCommentR import { UpdateCommentResponseReactionAddressUserEmailNotificationInterval } from './UpdateCommentResponseReactionAddressUserEmailNotificationInterval'; import { UpdateCommentResponseReactionAddressUserProfile } from './UpdateCommentResponseReactionAddressUserProfile'; import { UpdateCommentResponseReactionAddressUserProfileTagsItem } from './UpdateCommentResponseReactionAddressUserProfileTagsItem'; - export declare const UpdateCommentResponseReactionAddressUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReactionAddressUser.Raw, CommonApi.UpdateCommentResponseReactionAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.js index 0c26f4c1979..631ba8ea5bc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUser.js @@ -6,7 +6,6 @@ import { UpdateCommentResponseReactionAddressUserApiKey } from './UpdateCommentR import { UpdateCommentResponseReactionAddressUserEmailNotificationInterval } from './UpdateCommentResponseReactionAddressUserEmailNotificationInterval'; import { UpdateCommentResponseReactionAddressUserProfile } from './UpdateCommentResponseReactionAddressUserProfile'; import { UpdateCommentResponseReactionAddressUserProfileTagsItem } from './UpdateCommentResponseReactionAddressUserProfileTagsItem'; - export const UpdateCommentResponseReactionAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts new file mode 100644 index 00000000000..72838eea723 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommentResponseReactionAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommentResponseReactionAddressUserApiKey.Raw, + CommonApi.UpdateCommentResponseReactionAddressUserApiKey +>; +export declare namespace UpdateCommentResponseReactionAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js new file mode 100644 index 00000000000..e019da8d4a1 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommentResponseReactionAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts index 69c16bf7f93..d8e0d2f968f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseReactionAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommentResponseReactionAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateCommentResponseReactionAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.js index 2b42c16f635..ec8479117b3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseReactionAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts index 34dfb26f6b9..9ffb95f9114 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseReactionAddressUserProfileBackgroundImage } from './UpdateCommentResponseReactionAddressUserProfileBackgroundImage'; - export declare const UpdateCommentResponseReactionAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReactionAddressUserProfile.Raw, CommonApi.UpdateCommentResponseReactionAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.js index 9cd9d91c084..f0fa1b1ec85 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseReactionAddressUserProfileBackgroundImage } from './UpdateCommentResponseReactionAddressUserProfileBackgroundImage'; - export const UpdateCommentResponseReactionAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts index b27fd81397d..1c654e6d61d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseReactionAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReactionAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateCommentResponseReactionAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.js index 106d1adf2df..ca9f1c4560f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseReactionAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.d.ts index 7727e72c43c..79f1c3e44c6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseReactionAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseReactionAddressUserProfileTagsItem.Raw, CommonApi.UpdateCommentResponseReactionAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.js index c2db676fbb5..c048cdb37fc 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseReactionAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.d.ts index d1233258b87..49c00e9d6bd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseReactionAddressWalletId: core.serialization.Schema< serializers.UpdateCommentResponseReactionAddressWalletId.Raw, CommonApi.UpdateCommentResponseReactionAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.js index 13a84851c9c..b0f9fa57030 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseReactionAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseReactionAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.d.ts index 8bcbdcac84e..fd6ccb25e32 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseSearch: core.serialization.Schema< serializers.UpdateCommentResponseSearch.Raw, CommonApi.UpdateCommentResponseSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.js index 7b73c793fb2..cb62322a7bd 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.d.ts index 3567457fef3..4840ed52ba6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.d.ts @@ -12,7 +12,6 @@ import { UpdateCommentResponseThreadReactionsItem } from './UpdateCommentRespons import { UpdateCommentResponseThreadSearch } from './UpdateCommentResponseThreadSearch'; import { UpdateCommentResponseThreadThreadVersionHistoriesItem } from './UpdateCommentResponseThreadThreadVersionHistoriesItem'; import { UpdateCommentResponseThreadTopic } from './UpdateCommentResponseThreadTopic'; - export declare const UpdateCommentResponseThread: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThread.Raw, CommonApi.UpdateCommentResponseThread @@ -23,14 +22,13 @@ export declare namespace UpdateCommentResponseThread { address_id: number; title: string; kind: string; - stage: string; + stage?: string | null; body?: string | null; - plaintext?: string | null; url?: string | null; topic_id?: number | null; pinned?: boolean | null; community_id: string; - view_count: number; + view_count?: number | null; links?: UpdateCommentResponseThreadLinksItem.Raw[] | null; content_url?: string | null; read_only?: boolean | null; @@ -46,9 +44,9 @@ export declare namespace UpdateCommentResponseThread { archived_at?: string | null; locked_at?: string | null; discord_meta?: UpdateCommentResponseThreadDiscordMeta.Raw | null; - reaction_count: number; - reaction_weights_sum: number; - comment_count: number; + reaction_count?: number | null; + reaction_weights_sum?: number | null; + comment_count?: number | null; activity_rank_date?: string | null; created_by?: string | null; profile_name?: string | null; diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.js index 3d0b88fe2f5..aee326342a2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThread.js @@ -10,7 +10,6 @@ import { UpdateCommentResponseThreadReactionsItem } from './UpdateCommentRespons import { UpdateCommentResponseThreadSearch } from './UpdateCommentResponseThreadSearch'; import { UpdateCommentResponseThreadThreadVersionHistoriesItem } from './UpdateCommentResponseThreadThreadVersionHistoriesItem'; import { UpdateCommentResponseThreadTopic } from './UpdateCommentResponseThreadTopic'; - export const UpdateCommentResponseThread = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( @@ -19,9 +18,8 @@ export const UpdateCommentResponseThread = core.serialization.object({ ), title: core.serialization.string(), kind: core.serialization.string(), - stage: core.serialization.string(), + stage: core.serialization.string().optional(), body: core.serialization.string().optional(), - plaintext: core.serialization.string().optional(), url: core.serialization.string().optional(), topicId: core.serialization.property( 'topic_id', @@ -34,7 +32,7 @@ export const UpdateCommentResponseThread = core.serialization.object({ ), viewCount: core.serialization.property( 'view_count', - core.serialization.number(), + core.serialization.number().optional(), ), links: core.serialization .list(UpdateCommentResponseThreadLinksItem) @@ -97,15 +95,15 @@ export const UpdateCommentResponseThread = core.serialization.object({ ), reactionCount: core.serialization.property( 'reaction_count', - core.serialization.number(), + core.serialization.number().optional(), ), reactionWeightsSum: core.serialization.property( 'reaction_weights_sum', - core.serialization.number(), + core.serialization.number().optional(), ), commentCount: core.serialization.property( 'comment_count', - core.serialization.number(), + core.serialization.number().optional(), ), activityRankDate: core.serialization.property( 'activity_rank_date', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts index cbaf6f53de9..ffc0f6879c1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommentResponseThreadAddressRole } from './UpdateCommentResponseThreadAddressRole'; import { UpdateCommentResponseThreadAddressUser } from './UpdateCommentResponseThreadAddressUser'; import { UpdateCommentResponseThreadAddressWalletId } from './UpdateCommentResponseThreadAddressWalletId'; - export declare const UpdateCommentResponseThreadAddress: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadAddress.Raw, CommonApi.UpdateCommentResponseThreadAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.js index 643ea9451e1..e50e8815c3b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseThreadAddressRole } from './UpdateCommentResponseThreadAddressRole'; import { UpdateCommentResponseThreadAddressUser } from './UpdateCommentResponseThreadAddressUser'; import { UpdateCommentResponseThreadAddressWalletId } from './UpdateCommentResponseThreadAddressWalletId'; - export const UpdateCommentResponseThreadAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.d.ts index 89e92681515..b21e7a78ecf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadAddressRole: core.serialization.Schema< serializers.UpdateCommentResponseThreadAddressRole.Raw, CommonApi.UpdateCommentResponseThreadAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.js index 907ce10fab3..2e0fc662277 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts index 65875276fa1..3399630823e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommentResponseThreadAddressUserApiKey } from './UpdateCommentRes import { UpdateCommentResponseThreadAddressUserEmailNotificationInterval } from './UpdateCommentResponseThreadAddressUserEmailNotificationInterval'; import { UpdateCommentResponseThreadAddressUserProfile } from './UpdateCommentResponseThreadAddressUserProfile'; import { UpdateCommentResponseThreadAddressUserProfileTagsItem } from './UpdateCommentResponseThreadAddressUserProfileTagsItem'; - export declare const UpdateCommentResponseThreadAddressUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadAddressUser.Raw, CommonApi.UpdateCommentResponseThreadAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.js index 2baf74d8fd2..f16bb5d1542 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUser.js @@ -6,7 +6,6 @@ import { UpdateCommentResponseThreadAddressUserApiKey } from './UpdateCommentRes import { UpdateCommentResponseThreadAddressUserEmailNotificationInterval } from './UpdateCommentResponseThreadAddressUserEmailNotificationInterval'; import { UpdateCommentResponseThreadAddressUserProfile } from './UpdateCommentResponseThreadAddressUserProfile'; import { UpdateCommentResponseThreadAddressUserProfileTagsItem } from './UpdateCommentResponseThreadAddressUserProfileTagsItem'; - export const UpdateCommentResponseThreadAddressUser = core.serialization.object( { id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts new file mode 100644 index 00000000000..b031ceafed5 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommentResponseThreadAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommentResponseThreadAddressUserApiKey.Raw, + CommonApi.UpdateCommentResponseThreadAddressUserApiKey +>; +export declare namespace UpdateCommentResponseThreadAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js new file mode 100644 index 00000000000..3b18a7fd48e --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommentResponseThreadAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts index 20c85ae321f..3e14528feae 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommentResponseThreadAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateCommentResponseThreadAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.js index 8a4c90b6946..3d46688a12e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts index 0e39c7528e0..4b80497339d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadAddressUserProfileBackgroundImage } from './UpdateCommentResponseThreadAddressUserProfileBackgroundImage'; - export declare const UpdateCommentResponseThreadAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadAddressUserProfile.Raw, CommonApi.UpdateCommentResponseThreadAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.js index e14bcee15c4..883c91f6ef3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadAddressUserProfileBackgroundImage } from './UpdateCommentResponseThreadAddressUserProfileBackgroundImage'; - export const UpdateCommentResponseThreadAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts index cf4f7d2a84d..35127dca5b2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateCommentResponseThreadAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.js index e6a1e41a7c6..a6027584cf1 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.d.ts index ebebf36ff88..e992993a721 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadAddressUserProfileTagsItem.Raw, CommonApi.UpdateCommentResponseThreadAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.js index 7af60fbbe0d..61945e5e716 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.d.ts index eac8973561a..46d02b1d425 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadAddressWalletId: core.serialization.Schema< serializers.UpdateCommentResponseThreadAddressWalletId.Raw, CommonApi.UpdateCommentResponseThreadAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.js index 01cc606bae1..b7207264788 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts index 960677bd820..fbb5575b480 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommentResponseThreadCollaboratorsItemRole } from './UpdateCommentResponseThreadCollaboratorsItemRole'; import { UpdateCommentResponseThreadCollaboratorsItemUser } from './UpdateCommentResponseThreadCollaboratorsItemUser'; import { UpdateCommentResponseThreadCollaboratorsItemWalletId } from './UpdateCommentResponseThreadCollaboratorsItemWalletId'; - export declare const UpdateCommentResponseThreadCollaboratorsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadCollaboratorsItem.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.js index 3bf210b59c9..6add63eadd9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseThreadCollaboratorsItemRole } from './UpdateCommentResponseThreadCollaboratorsItemRole'; import { UpdateCommentResponseThreadCollaboratorsItemUser } from './UpdateCommentResponseThreadCollaboratorsItemUser'; import { UpdateCommentResponseThreadCollaboratorsItemWalletId } from './UpdateCommentResponseThreadCollaboratorsItemWalletId'; - export const UpdateCommentResponseThreadCollaboratorsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.d.ts index b2be8601eb4..10faf38d9d9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadCollaboratorsItemRole: core.serialization.Schema< serializers.UpdateCommentResponseThreadCollaboratorsItemRole.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemRole diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.js index 8e3dcbeae00..06b6e8c5ca5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadCollaboratorsItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts index 673c065f3f1..cf51bd07c43 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommentResponseThreadCollaboratorsItemUserApiKey } from './Update import { UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval } from './UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfile } from './UpdateCommentResponseThreadCollaboratorsItemUserProfile'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem } from './UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem'; - export declare const UpdateCommentResponseThreadCollaboratorsItemUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadCollaboratorsItemUser.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.js index 065488b93f7..93437d07bcf 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUser.js @@ -6,7 +6,6 @@ import { UpdateCommentResponseThreadCollaboratorsItemUserApiKey } from './Update import { UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval } from './UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfile } from './UpdateCommentResponseThreadCollaboratorsItemUserProfile'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem } from './UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem'; - export const UpdateCommentResponseThreadCollaboratorsItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..72ddd6b7c03 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommentResponseThreadCollaboratorsItemUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommentResponseThreadCollaboratorsItemUserApiKey.Raw, + CommonApi.UpdateCommentResponseThreadCollaboratorsItemUserApiKey +>; +export declare namespace UpdateCommentResponseThreadCollaboratorsItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..d407ae1d6ae --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommentResponseThreadCollaboratorsItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts index 12644b7ab34..a7e99395102 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js index f34bc1eaeec..a79ee5efc31 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadCollaboratorsItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts index 615454d11f3..3dbb2cabfb8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage } from './UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage'; - export declare const UpdateCommentResponseThreadCollaboratorsItemUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadCollaboratorsItemUserProfile.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.js index 424573d25f9..3753f382f4b 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage } from './UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage'; - export const UpdateCommentResponseThreadCollaboratorsItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts index 6e02bcf552c..3cc38ea2aca 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js index df4d2ea6cd6..499897faba5 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadCollaboratorsItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts index 341433ed59c..049591e8f77 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js index 98658350e8d..d12d84bbc9f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadCollaboratorsItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.d.ts index 74507dabf82..15678342795 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadCollaboratorsItemWalletId: core.serialization.Schema< serializers.UpdateCommentResponseThreadCollaboratorsItemWalletId.Raw, CommonApi.UpdateCommentResponseThreadCollaboratorsItemWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.js index 31140951684..10326c131bb 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadCollaboratorsItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadCollaboratorsItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts index 83363468357..abbd4a0c10f 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadDiscordMetaUser } from './UpdateCommentResponseThreadDiscordMetaUser'; - export declare const UpdateCommentResponseThreadDiscordMeta: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadDiscordMeta.Raw, CommonApi.UpdateCommentResponseThreadDiscordMeta diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.js index 3de0edb2884..26bcaaf6a59 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadDiscordMetaUser } from './UpdateCommentResponseThreadDiscordMetaUser'; - export const UpdateCommentResponseThreadDiscordMeta = core.serialization.object( { user: UpdateCommentResponseThreadDiscordMetaUser, diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.d.ts index 22605a2efab..355767c5338 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadDiscordMetaUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadDiscordMetaUser.Raw, CommonApi.UpdateCommentResponseThreadDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.js index 937fe26c3dd..d1599a6a6e9 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts index 8c91907172f..1a0d2a3529e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadLinksItemSource } from './UpdateCommentResponseThreadLinksItemSource'; - export declare const UpdateCommentResponseThreadLinksItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadLinksItem.Raw, CommonApi.UpdateCommentResponseThreadLinksItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.js index 33a842a1fa1..efcecea6553 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadLinksItemSource } from './UpdateCommentResponseThreadLinksItemSource'; - export const UpdateCommentResponseThreadLinksItem = core.serialization.object({ source: UpdateCommentResponseThreadLinksItemSource, identifier: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.d.ts index a39d672f471..2790ce26649 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadLinksItemSource: core.serialization.Schema< serializers.UpdateCommentResponseThreadLinksItemSource.Raw, CommonApi.UpdateCommentResponseThreadLinksItemSource diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.js index d3cd58ecb5b..e05ea7105ec 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadLinksItemSource.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadLinksItemSource = core.serialization.enum_([ 'snapshot', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts index 98365c20c92..c273dddb49e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadReactionsItemAddress } from './UpdateCommentResponseThreadReactionsItemAddress'; - export declare const UpdateCommentResponseThreadReactionsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItem.Raw, CommonApi.UpdateCommentResponseThreadReactionsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.js index 1a890219d67..c865e843f35 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadReactionsItemAddress } from './UpdateCommentResponseThreadReactionsItemAddress'; - export const UpdateCommentResponseThreadReactionsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts index 9a4926e85a4..b2f3af25487 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommentResponseThreadReactionsItemAddressRole } from './UpdateCommentResponseThreadReactionsItemAddressRole'; import { UpdateCommentResponseThreadReactionsItemAddressUser } from './UpdateCommentResponseThreadReactionsItemAddressUser'; import { UpdateCommentResponseThreadReactionsItemAddressWalletId } from './UpdateCommentResponseThreadReactionsItemAddressWalletId'; - export declare const UpdateCommentResponseThreadReactionsItemAddress: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItemAddress.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddress diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.js index 02b750994f4..24a0e5fb386 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseThreadReactionsItemAddressRole } from './UpdateCommentResponseThreadReactionsItemAddressRole'; import { UpdateCommentResponseThreadReactionsItemAddressUser } from './UpdateCommentResponseThreadReactionsItemAddressUser'; import { UpdateCommentResponseThreadReactionsItemAddressWalletId } from './UpdateCommentResponseThreadReactionsItemAddressWalletId'; - export const UpdateCommentResponseThreadReactionsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.d.ts index 891b532902c..c2792473341 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadReactionsItemAddressRole: core.serialization.Schema< serializers.UpdateCommentResponseThreadReactionsItemAddressRole.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.js index e463d2aef91..e056e5b4541 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadReactionsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts index 1dccf76aeaf..a8586f401a7 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommentResponseThreadReactionsItemAddressUserApiKey } from './Upd import { UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval } from './UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfile } from './UpdateCommentResponseThreadReactionsItemAddressUserProfile'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem } from './UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem'; - export declare const UpdateCommentResponseThreadReactionsItemAddressUser: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItemAddressUser.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.js index 5fc77897c85..05e8c6335b6 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUser.js @@ -6,7 +6,6 @@ import { UpdateCommentResponseThreadReactionsItemAddressUserApiKey } from './Upd import { UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval } from './UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfile } from './UpdateCommentResponseThreadReactionsItemAddressUserProfile'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem } from './UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem'; - export const UpdateCommentResponseThreadReactionsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..b6aa6e7d03b --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommentResponseThreadReactionsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommentResponseThreadReactionsItemAddressUserApiKey.Raw, + CommonApi.UpdateCommentResponseThreadReactionsItemAddressUserApiKey +>; +export declare namespace UpdateCommentResponseThreadReactionsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..5a3d52347a0 --- /dev/null +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommentResponseThreadReactionsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts index e1169e114a1..f66e700d14d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js index 73fa9711c53..bad62637af3 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadReactionsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts index d0df641816e..609f40cbb4c 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage } from './UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage'; - export declare const UpdateCommentResponseThreadReactionsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItemAddressUserProfile.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.js index 1f6eeaa334d..4247a66dfc4 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage } from './UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage'; - export const UpdateCommentResponseThreadReactionsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts index 96929ec0151..9a8a39aba94 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js index d827e44305e..ccf579d4323 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadReactionsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts index 3dfbb3465f7..ed2d67aec5e 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js index c712742a48b..79c3977a642 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadReactionsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.d.ts index 06ea157ba5e..b2f04d0d9b0 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadReactionsItemAddressWalletId: core.serialization.Schema< serializers.UpdateCommentResponseThreadReactionsItemAddressWalletId.Raw, CommonApi.UpdateCommentResponseThreadReactionsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.js index c039033b679..5494ae09070 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadReactionsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadReactionsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.d.ts index 51170a6444d..22168dbd7fe 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadSearch: core.serialization.Schema< serializers.UpdateCommentResponseThreadSearch.Raw, CommonApi.UpdateCommentResponseThreadSearch diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.js index dca006e883f..8035264aeba 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.d.ts index 419d1f358f5..3ed7af971b2 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadThreadVersionHistoriesItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadThreadVersionHistoriesItem.Raw, CommonApi.UpdateCommentResponseThreadThreadVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.js index 07c5860dff3..6677c255a23 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadThreadVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadThreadVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts index 9e12c1e9218..a3df173d87a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommentResponseThreadTopicContestTopicsItem } from './UpdateCommentResponseThreadTopicContestTopicsItem'; import { UpdateCommentResponseThreadTopicWeightedVoting } from './UpdateCommentResponseThreadTopicWeightedVoting'; - export declare const UpdateCommentResponseThreadTopic: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadTopic.Raw, CommonApi.UpdateCommentResponseThreadTopic diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.js index 1e1f9f388fa..e0a224e66f8 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommentResponseThreadTopicContestTopicsItem } from './UpdateCommentResponseThreadTopicContestTopicsItem'; import { UpdateCommentResponseThreadTopicWeightedVoting } from './UpdateCommentResponseThreadTopicWeightedVoting'; - export const UpdateCommentResponseThreadTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.d.ts index 86e054517c4..c55cf4b9d67 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommentResponseThreadTopicContestTopicsItem.Raw, CommonApi.UpdateCommentResponseThreadTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.js index 1f486582fff..0ff13f417da 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.d.ts index 9f0dbcfb5b1..7c0e9b65b8d 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommentResponseThreadTopicWeightedVoting: core.serialization.Schema< serializers.UpdateCommentResponseThreadTopicWeightedVoting.Raw, CommonApi.UpdateCommentResponseThreadTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.js index 5f4c99e80e7..b9444d0728a 100644 --- a/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/comment/types/UpdateCommentResponseThreadTopicWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommentResponseThreadTopicWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.d.ts index d88ce41e705..e738a74bee6 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { CreateCommunityRequestBase } from '../../types/CreateCommunityRequestBase'; import { CreateCommunityRequestType } from '../../types/CreateCommunityRequestType'; - export declare const CreateCommunityRequest: core.serialization.Schema< serializers.CreateCommunityRequest.Raw, CommonApi.CreateCommunityRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.js index 63964971cb8..91f9bf92200 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateCommunityRequest.js @@ -4,7 +4,6 @@ import * as core from '../../../../../core'; import { CreateCommunityRequestBase } from '../../types/CreateCommunityRequestBase'; import { CreateCommunityRequestType } from '../../types/CreateCommunityRequestType'; - export const CreateCommunityRequest = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.d.ts index 4eae43e2452..e23449c46e2 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { CreateGroupRequestMetadata } from '../../types/CreateGroupRequestMetadata'; import { CreateGroupRequestRequirementsItem } from '../../types/CreateGroupRequestRequirementsItem'; - export declare const CreateGroupRequest: core.serialization.Schema< serializers.CreateGroupRequest.Raw, CommonApi.CreateGroupRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.js index 4dfa954b905..1b2b2def8ea 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateGroupRequest.js @@ -4,7 +4,6 @@ import * as core from '../../../../../core'; import { CreateGroupRequestMetadata } from '../../types/CreateGroupRequestMetadata'; import { CreateGroupRequestRequirementsItem } from '../../types/CreateGroupRequestRequirementsItem'; - export const CreateGroupRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.d.ts index 356bf91762f..b14f48cbf57 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { CreateTopicRequestWeightedVoting } from '../../types/CreateTopicRequestWeightedVoting'; - export declare const CreateTopicRequest: core.serialization.Schema< serializers.CreateTopicRequest.Raw, CommonApi.CreateTopicRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.js index 38780798a50..e6fdc16340e 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/CreateTopicRequest.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../../core'; import { CreateTopicRequestWeightedVoting } from '../../types/CreateTopicRequestWeightedVoting'; - export const CreateTopicRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.d.ts index cb5fa52b60e..616a12a5269 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const DeleteGroupRequest: core.serialization.Schema< serializers.DeleteGroupRequest.Raw, CommonApi.DeleteGroupRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.js index 7804b51f6b0..cbb70b861ca 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/DeleteGroupRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const DeleteGroupRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.d.ts index f03b80279f5..4e49f0836c8 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const DeleteTopicRequest: core.serialization.Schema< serializers.DeleteTopicRequest.Raw, CommonApi.DeleteTopicRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.js index 39e9beafea8..57d6f609abc 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/DeleteTopicRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const DeleteTopicRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.d.ts new file mode 100644 index 00000000000..e5e29f55053 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.d.ts @@ -0,0 +1,15 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../../api/index'; +import * as core from '../../../../../core'; +import * as serializers from '../../../../index'; +export declare const JoinCommunityRequest: core.serialization.Schema< + serializers.JoinCommunityRequest.Raw, + CommonApi.JoinCommunityRequest +>; +export declare namespace JoinCommunityRequest { + interface Raw { + community_id: string; + } +} diff --git a/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.js new file mode 100644 index 00000000000..00c69a0685b --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/client/requests/JoinCommunityRequest.js @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../../core'; +export const JoinCommunityRequest = core.serialization.object({ + communityId: core.serialization.property( + 'community_id', + core.serialization.string(), + ), +}); diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.d.ts index f92d4accb23..a34f53495e0 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.d.ts @@ -18,7 +18,6 @@ import { UpdateCommunityRequestSocialLinksItem } from '../../types/UpdateCommuni import { UpdateCommunityRequestTerms } from '../../types/UpdateCommunityRequestTerms'; import { UpdateCommunityRequestTopicsItem } from '../../types/UpdateCommunityRequestTopicsItem'; import { UpdateCommunityRequestType } from '../../types/UpdateCommunityRequestType'; - export declare const UpdateCommunityRequest: core.serialization.Schema< serializers.UpdateCommunityRequest.Raw, CommonApi.UpdateCommunityRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.js index f1e8e7c93ee..53b79fa6afa 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateCommunityRequest.js @@ -16,7 +16,6 @@ import { UpdateCommunityRequestSocialLinksItem } from '../../types/UpdateCommuni import { UpdateCommunityRequestTerms } from '../../types/UpdateCommunityRequestTerms'; import { UpdateCommunityRequestTopicsItem } from '../../types/UpdateCommunityRequestTopicsItem'; import { UpdateCommunityRequestType } from '../../types/UpdateCommunityRequestType'; - export const UpdateCommunityRequest = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.d.ts index ef6381b8491..7e68eb9b029 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { UpdateGroupRequestMetadata } from '../../types/UpdateGroupRequestMetadata'; import { UpdateGroupRequestRequirementsItem } from '../../types/UpdateGroupRequestRequirementsItem'; - export declare const UpdateGroupRequest: core.serialization.Schema< serializers.UpdateGroupRequest.Raw, CommonApi.UpdateGroupRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.js index c9ad473ec05..848c4613c75 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateGroupRequest.js @@ -4,7 +4,6 @@ import * as core from '../../../../../core'; import { UpdateGroupRequestMetadata } from '../../types/UpdateGroupRequestMetadata'; import { UpdateGroupRequestRequirementsItem } from '../../types/UpdateGroupRequestRequirementsItem'; - export const UpdateGroupRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.d.ts b/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.d.ts index 9b5a9863ce5..519d52491ca 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.d.ts +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const UpdateTopicRequest: core.serialization.Schema< serializers.UpdateTopicRequest.Raw, CommonApi.UpdateTopicRequest diff --git a/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.js b/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.js index e0d1b89afaa..2beea064952 100644 --- a/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.js +++ b/libs/api-client/src/serialization/resources/community/client/requests/UpdateTopicRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const UpdateTopicRequest = core.serialization.object({ topicId: core.serialization.property('topic_id', core.serialization.number()), communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.d.ts index 2241ec95901..920c8960169 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityRequestBase: core.serialization.Schema< serializers.CreateCommunityRequestBase.Raw, CommonApi.CreateCommunityRequestBase diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.js index 3ed77e1d3b8..a32b7e0cc71 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityRequestBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.d.ts index 4ac1611327b..231e226ab84 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityRequestType: core.serialization.Schema< serializers.CreateCommunityRequestType.Raw, CommonApi.CreateCommunityRequestType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.js index 5e3a8d9f834..a77842f71cf 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityRequestType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityRequestType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.d.ts index 3b1b736e3ba..cd181430252 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunity } from './CreateCommunityResponseCommunity'; - export declare const CreateCommunityResponse: core.serialization.ObjectSchema< serializers.CreateCommunityResponse.Raw, CommonApi.CreateCommunityResponse diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.js index 47d7fc43dda..ab4ef5072bf 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunity } from './CreateCommunityResponseCommunity'; - export const CreateCommunityResponse = core.serialization.object({ community: CreateCommunityResponseCommunity, adminAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.d.ts index 92a7e5ef785..79d4de43026 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.d.ts @@ -17,7 +17,6 @@ import { CreateCommunityResponseCommunitySocialLinksItem } from './CreateCommuni import { CreateCommunityResponseCommunityTerms } from './CreateCommunityResponseCommunityTerms'; import { CreateCommunityResponseCommunityTopicsItem } from './CreateCommunityResponseCommunityTopicsItem'; import { CreateCommunityResponseCommunityType } from './CreateCommunityResponseCommunityType'; - export declare const CreateCommunityResponseCommunity: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunity.Raw, CommonApi.CreateCommunityResponseCommunity diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.js index baebd54a3e5..86cba84b25e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunity.js @@ -15,7 +15,6 @@ import { CreateCommunityResponseCommunitySocialLinksItem } from './CreateCommuni import { CreateCommunityResponseCommunityTerms } from './CreateCommunityResponseCommunityTerms'; import { CreateCommunityResponseCommunityTopicsItem } from './CreateCommunityResponseCommunityTopicsItem'; import { CreateCommunityResponseCommunityType } from './CreateCommunityResponseCommunityType'; - export const CreateCommunityResponseCommunity = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts index cfe2a4398c4..52846af097d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityAddressesItemRole } from './CreateCommunityResponseCommunityAddressesItemRole'; import { CreateCommunityResponseCommunityAddressesItemUser } from './CreateCommunityResponseCommunityAddressesItemUser'; import { CreateCommunityResponseCommunityAddressesItemWalletId } from './CreateCommunityResponseCommunityAddressesItemWalletId'; - export declare const CreateCommunityResponseCommunityAddressesItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityAddressesItem.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.js index 9d2f49b7da4..eab76a82e32 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityAddressesItemRole } from './CreateCommunityResponseCommunityAddressesItemRole'; import { CreateCommunityResponseCommunityAddressesItemUser } from './CreateCommunityResponseCommunityAddressesItemUser'; import { CreateCommunityResponseCommunityAddressesItemWalletId } from './CreateCommunityResponseCommunityAddressesItemWalletId'; - export const CreateCommunityResponseCommunityAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.d.ts index c143f612338..08b1f7ca8ed 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityAddressesItemRole: core.serialization.Schema< serializers.CreateCommunityResponseCommunityAddressesItemRole.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.js index 96866b195eb..3cdf37fe98f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityAddressesItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts index 6916f95c34e..0b269cfce47 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommunityResponseCommunityAddressesItemUserApiKey } from './Creat import { CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval } from './CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval'; import { CreateCommunityResponseCommunityAddressesItemUserProfile } from './CreateCommunityResponseCommunityAddressesItemUserProfile'; import { CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem } from './CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem'; - export declare const CreateCommunityResponseCommunityAddressesItemUser: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityAddressesItemUser.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.js index 2b6320ac828..552757078d2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUser.js @@ -6,7 +6,6 @@ import { CreateCommunityResponseCommunityAddressesItemUserApiKey } from './Creat import { CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval } from './CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval'; import { CreateCommunityResponseCommunityAddressesItemUserProfile } from './CreateCommunityResponseCommunityAddressesItemUserProfile'; import { CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem } from './CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem'; - export const CreateCommunityResponseCommunityAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..87a99eb7819 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommunityResponseCommunityAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommunityResponseCommunityAddressesItemUserApiKey.Raw, + CommonApi.CreateCommunityResponseCommunityAddressesItemUserApiKey +>; +export declare namespace CreateCommunityResponseCommunityAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js new file mode 100644 index 00000000000..10c198c2d5f --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommunityResponseCommunityAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.d.ts index b52019f6a8d..b74556f912d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.js index 1619363e62e..a9a004c588f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts index 01165d59eb0..68a21b1cfe2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage } from './CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage'; - export declare const CreateCommunityResponseCommunityAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityAddressesItemUserProfile.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.js index dcc93ff8061..03e59f94b26 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage } from './CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage'; - export const CreateCommunityResponseCommunityAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.d.ts index 4ca8c1c5db3..1d0734d4f42 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.js index d7afcd4b3a4..cc4ce2797dc 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.d.ts index f5087dd153c..dcdf8b3eee2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.js index 499acc0ae37..4c12db693ce 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.d.ts index 4a998542203..c090d600475 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityAddressesItemWalletId: core.serialization.Schema< serializers.CreateCommunityResponseCommunityAddressesItemWalletId.Raw, CommonApi.CreateCommunityResponseCommunityAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.js index 2b5e33b8d9d..e3cc5ba5d59 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.d.ts index dec563bfd7b..c2882abbf56 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityBase: core.serialization.Schema< serializers.CreateCommunityResponseCommunityBase.Raw, CommonApi.CreateCommunityResponseCommunityBase diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.js index ceff4dc1daf..b070eadd26f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts index 67097272c33..5372bb4b14a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.d.ts @@ -8,7 +8,6 @@ import { CreateCommunityResponseCommunityChainNodeBalanceType } from './CreateCo import { CreateCommunityResponseCommunityChainNodeContractsItem } from './CreateCommunityResponseCommunityChainNodeContractsItem'; import { CreateCommunityResponseCommunityChainNodeCosmosGovVersion } from './CreateCommunityResponseCommunityChainNodeCosmosGovVersion'; import { CreateCommunityResponseCommunityChainNodeHealth } from './CreateCommunityResponseCommunityChainNodeHealth'; - export declare const CreateCommunityResponseCommunityChainNode: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityChainNode.Raw, CommonApi.CreateCommunityResponseCommunityChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.js index 5568c3efbf6..8dddb2ec07b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNode.js @@ -6,7 +6,6 @@ import { CreateCommunityResponseCommunityChainNodeBalanceType } from './CreateCo import { CreateCommunityResponseCommunityChainNodeContractsItem } from './CreateCommunityResponseCommunityChainNodeContractsItem'; import { CreateCommunityResponseCommunityChainNodeCosmosGovVersion } from './CreateCommunityResponseCommunityChainNodeCosmosGovVersion'; import { CreateCommunityResponseCommunityChainNodeHealth } from './CreateCommunityResponseCommunityChainNodeHealth'; - export const CreateCommunityResponseCommunityChainNode = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.d.ts index 45d2901d2fd..4a2e133d304 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityChainNodeBalanceType: core.serialization.Schema< serializers.CreateCommunityResponseCommunityChainNodeBalanceType.Raw, CommonApi.CreateCommunityResponseCommunityChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.js index 08017bc1183..5f27bf96035 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityChainNodeBalanceType = core.serialization.enum_([ 'terra', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.d.ts index 33377b1e40b..3aa89c11a07 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityChainNodeContractsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityChainNodeContractsItem.Raw, CommonApi.CreateCommunityResponseCommunityChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.js index facf2f31c68..4ed0f683b45 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.d.ts index 5adb148b728..293f44dd19e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityChainNodeCosmosGovVersion: core.serialization.Schema< serializers.CreateCommunityResponseCommunityChainNodeCosmosGovVersion.Raw, CommonApi.CreateCommunityResponseCommunityChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.js index 8541e27f6a4..6773e6e03da 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.d.ts index 998ef3aff37..f94faf531c4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityChainNodeHealth: core.serialization.Schema< serializers.CreateCommunityResponseCommunityChainNodeHealth.Raw, CommonApi.CreateCommunityResponseCommunityChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.js index 746402822af..3a05bc71247 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityChainNodeHealth.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityChainNodeHealth = core.serialization.enum_(['failed', 'healthy']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts index 8295083c3ce..ee9c389729b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem } from './CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem'; - export declare const CreateCommunityResponseCommunityCommunityStakesItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityCommunityStakesItem.Raw, CommonApi.CreateCommunityResponseCommunityCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.js index 15c970d2a9e..a49b0826068 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem } from './CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem'; - export const CreateCommunityResponseCommunityCommunityStakesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts index 85c5dada7e9..f66261b9e57 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection } from './CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.js index 0bae4721ec6..b750858bfd6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection } from './CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index ae6bbb997c9..40b19133bbc 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.js index 4e1346fb908..6f59e839877 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts index 7092abd40da..9c2d2bd49d2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityCommunityTagsItemTag } from './CreateCommunityResponseCommunityCommunityTagsItemTag'; - export declare const CreateCommunityResponseCommunityCommunityTagsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityCommunityTagsItem.Raw, CommonApi.CreateCommunityResponseCommunityCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.js index 4718bf39732..30fa64a6e24 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityCommunityTagsItemTag } from './CreateCommunityResponseCommunityCommunityTagsItemTag'; - export const CreateCommunityResponseCommunityCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.d.ts index 841aa1f7e72..110f992b367 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityCommunityTagsItemTag.Raw, CommonApi.CreateCommunityResponseCommunityCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.js index 949b3c9cbea..0e63f3fa663 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts index 5a63712e958..585b567ed16 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityContestManagersItemContestsItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItem'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItem } from './CreateCommunityResponseCommunityContestManagersItemTopicsItem'; - export declare const CreateCommunityResponseCommunityContestManagersItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.js index 233d4d4f1ed..84f9a2c53e9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityContestManagersItemContestsItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItem'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItem } from './CreateCommunityResponseCommunityContestManagersItemTopicsItem'; - export const CreateCommunityResponseCommunityContestManagersItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts index c4564ee18c8..6fb9c8339e1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem'; - export declare const CreateCommunityResponseCommunityContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItemContestsItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.js index cd0a77c68a4..e623b71ca63 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem } from './CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem'; - export const CreateCommunityResponseCommunityContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts index 181b94634a8..dbdc56ebe70 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction } from './CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction'; - export declare const CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.js index 157e7bfa800..d422d924bcd 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction } from './CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction'; - export const CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.d.ts index 648c95e8ed3..6a7ad459257 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.js index eccc81e0294..502ccc21ccc 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.d.ts index 7d9058966e1..4c239b0433f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.js index 2816a9ef5cf..56ecac581b1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts index 9fed3ec8f22..6a6396b4d32 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem } from './CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting } from './CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting'; - export declare const CreateCommunityResponseCommunityContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItemTopicsItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.js index 3b6117ad314..b06e54cdfa3 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem } from './CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem'; import { CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting } from './CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting'; - export const CreateCommunityResponseCommunityContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.d.ts index 42e352118a6..6e53b807e06 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.js index f8abca31234..820d4b62430 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.d.ts index d9c51612570..98fdf24492a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.js index e6de5123352..3a528a124a9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.d.ts index 36a531f3fb7..a5fd7e3fc06 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityDefaultPage: core.serialization.Schema< serializers.CreateCommunityResponseCommunityDefaultPage.Raw, CommonApi.CreateCommunityResponseCommunityDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.js index df2217c5e74..cb1bbcffb8d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts index 3204768bf50..429e72da77e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemMetadata } from './CreateCommunityResponseCommunityGroupsItemMetadata'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItem } from './CreateCommunityResponseCommunityGroupsItemRequirementsItem'; - export declare const CreateCommunityResponseCommunityGroupsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItem.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.js index 6b6d3018364..562adf7cc2a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemMetadata } from './CreateCommunityResponseCommunityGroupsItemMetadata'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItem } from './CreateCommunityResponseCommunityGroupsItemRequirementsItem'; - export const CreateCommunityResponseCommunityGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.d.ts index e726d49feae..805bb45a30b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemMetadata: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemMetadata.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.js index 9a2f0d67c4e..f87104138f5 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts index 2e1f012cfbd..395c02cf6cb 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItem: core.serialization.Schema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItem.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace CreateCommunityResponseCommunityGroupsItemRequirementsI type Raw = | CreateCommunityResponseCommunityGroupsItemRequirementsItem.Threshold | CreateCommunityResponseCommunityGroupsItemRequirementsItem.Allow; - interface Threshold extends CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.js index a61f6fe2cf9..98443fa7c21 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItem = core.serialization .union('rule', { diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts index ff78b747897..0bfff25031f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.js index d89890a17b4..4a6fc297868 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemAllow = core.serialization.object({ data: CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.d.ts index cdb36d6bd75..a214273ad88 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.js index 35477b38690..5c13e96d824 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts index 235b76b3997..ede5b22f611 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.js index 0eb370a7ffd..80f1076371f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThreshold = core.serialization.object({ data: CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts index bbb4473738b..a8689cca992 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.js index ead7b8f7565..f49a70eab86 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts index 8074746946a..f04c23facef 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.js index 7a335e19f91..1e83b56cf55 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdData import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index da6a8213b26..33fc3ff6659 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.js index 68e06492de3..4cd12aa7ec7 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 0d20a6dc4fe..a643113347f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.js index 57b67c7335a..5fff1bab38b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 2adfcac3c92..acff87a484c 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index d586f61d46d..b0319e32f62 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index e69f02d8c5c..7d6ce79399a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.js index 06a8610870b..7ee607e81cc 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index fe924f2c460..7ddf6da5b52 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index f78746a1863..2ee05ad5e68 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index ac11f407f1f..54e6d8d2e88 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index 8a40eb12045..0c346216666 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.d.ts index bfde785ab14..a01ec477541 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityHasHomepage: core.serialization.Schema< serializers.CreateCommunityResponseCommunityHasHomepage.Raw, CommonApi.CreateCommunityResponseCommunityHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.js index 6362925bb69..53658342e00 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityHasHomepage.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityHasHomepage = core.serialization.enum_(['true', 'false']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.d.ts index a32a4868ef1..131c5f7d072 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunitySocialLinksItem: core.serialization.Schema< serializers.CreateCommunityResponseCommunitySocialLinksItem.Raw, CommonApi.CreateCommunityResponseCommunitySocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.js index a2256ed1a07..5387f29bd97 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunitySocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunitySocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts index afdc17f6461..b773ba57b12 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityTermsZero } from './CreateCommunityResponseCommunityTermsZero'; - export declare const CreateCommunityResponseCommunityTerms: core.serialization.Schema< serializers.CreateCommunityResponseCommunityTerms.Raw, CommonApi.CreateCommunityResponseCommunityTerms diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.js index eed7598f2ad..9a017412c64 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityTermsZero } from './CreateCommunityResponseCommunityTermsZero'; - export const CreateCommunityResponseCommunityTerms = core.serialization.undiscriminatedUnion([ CreateCommunityResponseCommunityTermsZero, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.d.ts index 68b7fed25ed..fc979f7913b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityTermsZero: core.serialization.Schema< serializers.CreateCommunityResponseCommunityTermsZero.Raw, CommonApi.CreateCommunityResponseCommunityTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.js index 4283d83ce98..b159633a439 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts index a43ba8acd07..79b9ebf1f9e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommunityResponseCommunityTopicsItemContestTopicsItem } from './CreateCommunityResponseCommunityTopicsItemContestTopicsItem'; import { CreateCommunityResponseCommunityTopicsItemWeightedVoting } from './CreateCommunityResponseCommunityTopicsItemWeightedVoting'; - export declare const CreateCommunityResponseCommunityTopicsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityTopicsItem.Raw, CommonApi.CreateCommunityResponseCommunityTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.js index 4edef3a7fdf..045bee0882d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateCommunityResponseCommunityTopicsItemContestTopicsItem } from './CreateCommunityResponseCommunityTopicsItemContestTopicsItem'; import { CreateCommunityResponseCommunityTopicsItemWeightedVoting } from './CreateCommunityResponseCommunityTopicsItemWeightedVoting'; - export const CreateCommunityResponseCommunityTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.d.ts index b69cf910ea5..52f1a096a30 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateCommunityResponseCommunityTopicsItemContestTopicsItem.Raw, CommonApi.CreateCommunityResponseCommunityTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.js index 25d19e38149..c2ff9868a2a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.d.ts index 0ac8c453620..431039f240a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityTopicsItemWeightedVoting: core.serialization.Schema< serializers.CreateCommunityResponseCommunityTopicsItemWeightedVoting.Raw, CommonApi.CreateCommunityResponseCommunityTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.js index c214fdc8d7b..739d5a4c093 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.d.ts index 0a9e99bf9fb..85a795a1d7c 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommunityResponseCommunityType: core.serialization.Schema< serializers.CreateCommunityResponseCommunityType.Raw, CommonApi.CreateCommunityResponseCommunityType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.js b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.js index 9f612f7b458..5c41382a90e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateCommunityResponseCommunityType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommunityResponseCommunityType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.d.ts index f1989bfa825..dd5563b69af 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestMetadata: core.serialization.ObjectSchema< serializers.CreateGroupRequestMetadata.Raw, CommonApi.CreateGroupRequestMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.js index 9c875be4484..5f079fefd2c 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestMetadata = core.serialization.object({ name: core.serialization.string(), description: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.d.ts index 206694974fd..358bcf95029 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemAllow } from './CreateGroupRequestRequirementsItemAllow'; import { CreateGroupRequestRequirementsItemThreshold } from './CreateGroupRequestRequirementsItemThreshold'; - export declare const CreateGroupRequestRequirementsItem: core.serialization.Schema< serializers.CreateGroupRequestRequirementsItem.Raw, CommonApi.CreateGroupRequestRequirementsItem @@ -15,11 +14,9 @@ export declare namespace CreateGroupRequestRequirementsItem { type Raw = | CreateGroupRequestRequirementsItem.Threshold | CreateGroupRequestRequirementsItem.Allow; - interface Threshold extends CreateGroupRequestRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends CreateGroupRequestRequirementsItemAllow.Raw { rule: 'allow'; } diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.js index d760e51b0d8..9f5faf85c99 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemAllow } from './CreateGroupRequestRequirementsItemAllow'; import { CreateGroupRequestRequirementsItemThreshold } from './CreateGroupRequestRequirementsItemThreshold'; - export const CreateGroupRequestRequirementsItem = core.serialization .union('rule', { threshold: CreateGroupRequestRequirementsItemThreshold, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts index c2ac6943db2..20e44522737 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemAllowData } from './CreateGroupRequestRequirementsItemAllowData'; - export declare const CreateGroupRequestRequirementsItemAllow: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemAllow.Raw, CommonApi.CreateGroupRequestRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.js index 0b926526e9c..1685d379870 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemAllowData } from './CreateGroupRequestRequirementsItemAllowData'; - export const CreateGroupRequestRequirementsItemAllow = core.serialization.object({ data: CreateGroupRequestRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.d.ts index bdd9feaf049..1ff090919e2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemAllowData.Raw, CommonApi.CreateGroupRequestRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.js index 6855f052848..c9e3794c06e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts index 30f6bb20e82..f2baabcd7ce 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemThresholdData } from './CreateGroupRequestRequirementsItemThresholdData'; - export declare const CreateGroupRequestRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThreshold.Raw, CommonApi.CreateGroupRequestRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.js index f33cd2945e0..710042e6b4a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemThresholdData } from './CreateGroupRequestRequirementsItemThresholdData'; - export const CreateGroupRequestRequirementsItemThreshold = core.serialization.object({ data: CreateGroupRequestRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts index d431d7166d4..4b3396c3a70 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemThresholdDataSource } from './CreateGroupRequestRequirementsItemThresholdDataSource'; - export declare const CreateGroupRequestRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThresholdData.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.js index 80a0603f64d..65ed6ba7d67 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemThresholdDataSource } from './CreateGroupRequestRequirementsItemThresholdDataSource'; - export const CreateGroupRequestRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts index 8fb97769cc2..4d1d3e94a75 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { CreateGroupRequestRequirementsItemThresholdDataSourceOne } from './Crea import { CreateGroupRequestRequirementsItemThresholdDataSourceThree } from './CreateGroupRequestRequirementsItemThresholdDataSourceThree'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenId } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenId'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.CreateGroupRequestRequirementsItemThresholdDataSource.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.js index 1d101a64c69..b614a3d49b1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { CreateGroupRequestRequirementsItemThresholdDataSourceOne } from './Crea import { CreateGroupRequestRequirementsItemThresholdDataSourceThree } from './CreateGroupRequestRequirementsItemThresholdDataSourceThree'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenId } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenId'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol'; - export const CreateGroupRequestRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ CreateGroupRequestRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts index 4ec5699f464..d84e318883d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceOne.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.js index 3d58d489a76..3737b8d63b4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts index 580208562cb..284bb7a8375 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType } from './CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceThree.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.js index 990dcdc03c2..73bab0fb0be 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType } from './CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 5e53896ca2d..ede90fedda0 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js index cbf08a1f974..0e78fd7c699 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts index 2a547320364..046e3add8c9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.js index 1739c1a1105..5a2c833a3a2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index a08457a32f3..0b388146540 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js index 2f67929f9e8..c21e4919b33 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts index 23c09e832e7..8fa95cf642f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js index 728be700b15..c0be9cd4205 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.d.ts index c1cf786d71e..27a30185745 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.d.ts @@ -17,7 +17,6 @@ import { CreateGroupResponseSocialLinksItem } from './CreateGroupResponseSocialL import { CreateGroupResponseTerms } from './CreateGroupResponseTerms'; import { CreateGroupResponseTopicsItem } from './CreateGroupResponseTopicsItem'; import { CreateGroupResponseType } from './CreateGroupResponseType'; - export declare const CreateGroupResponse: core.serialization.ObjectSchema< serializers.CreateGroupResponse.Raw, CommonApi.CreateGroupResponse diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.js index e0d119f1d02..177ce91f63a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponse.js @@ -15,7 +15,6 @@ import { CreateGroupResponseSocialLinksItem } from './CreateGroupResponseSocialL import { CreateGroupResponseTerms } from './CreateGroupResponseTerms'; import { CreateGroupResponseTopicsItem } from './CreateGroupResponseTopicsItem'; import { CreateGroupResponseType } from './CreateGroupResponseType'; - export const CreateGroupResponse = core.serialization.object({ id: core.serialization.string().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.d.ts index 01eac4f4ab4..41504e14d62 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateGroupResponseAddressesItemRole } from './CreateGroupResponseAddressesItemRole'; import { CreateGroupResponseAddressesItemUser } from './CreateGroupResponseAddressesItemUser'; import { CreateGroupResponseAddressesItemWalletId } from './CreateGroupResponseAddressesItemWalletId'; - export declare const CreateGroupResponseAddressesItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseAddressesItem.Raw, CommonApi.CreateGroupResponseAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.js index 8585ebf8c84..5a018b19daa 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseAddressesItemRole } from './CreateGroupResponseAddressesItemRole'; import { CreateGroupResponseAddressesItemUser } from './CreateGroupResponseAddressesItemUser'; import { CreateGroupResponseAddressesItemWalletId } from './CreateGroupResponseAddressesItemWalletId'; - export const CreateGroupResponseAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.d.ts index 7a220ec9726..cd332f70518 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseAddressesItemRole: core.serialization.Schema< serializers.CreateGroupResponseAddressesItemRole.Raw, CommonApi.CreateGroupResponseAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.js index 0df3a81aa70..fd5518a1cd4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseAddressesItemRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts index ef673a1e04f..54536efc0ca 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { CreateGroupResponseAddressesItemUserApiKey } from './CreateGroupRespons import { CreateGroupResponseAddressesItemUserEmailNotificationInterval } from './CreateGroupResponseAddressesItemUserEmailNotificationInterval'; import { CreateGroupResponseAddressesItemUserProfile } from './CreateGroupResponseAddressesItemUserProfile'; import { CreateGroupResponseAddressesItemUserProfileTagsItem } from './CreateGroupResponseAddressesItemUserProfileTagsItem'; - export declare const CreateGroupResponseAddressesItemUser: core.serialization.ObjectSchema< serializers.CreateGroupResponseAddressesItemUser.Raw, CommonApi.CreateGroupResponseAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.js index e84877f5e55..eded3f8fd7a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUser.js @@ -6,7 +6,6 @@ import { CreateGroupResponseAddressesItemUserApiKey } from './CreateGroupRespons import { CreateGroupResponseAddressesItemUserEmailNotificationInterval } from './CreateGroupResponseAddressesItemUserEmailNotificationInterval'; import { CreateGroupResponseAddressesItemUserProfile } from './CreateGroupResponseAddressesItemUserProfile'; import { CreateGroupResponseAddressesItemUserProfileTagsItem } from './CreateGroupResponseAddressesItemUserProfileTagsItem'; - export const CreateGroupResponseAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), email: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..42ac51a45be --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateGroupResponseAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.CreateGroupResponseAddressesItemUserApiKey.Raw, + CommonApi.CreateGroupResponseAddressesItemUserApiKey +>; +export declare namespace CreateGroupResponseAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js new file mode 100644 index 00000000000..5dd6bce0097 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateGroupResponseAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.d.ts index f311b7a3056..2ac1a9301f9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateGroupResponseAddressesItemUserEmailNotificationInterval.Raw, CommonApi.CreateGroupResponseAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.js index c4467ff082f..007b55d02a6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts index 6bf306dc8f2..4663349136c 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseAddressesItemUserProfileBackgroundImage } from './CreateGroupResponseAddressesItemUserProfileBackgroundImage'; - export declare const CreateGroupResponseAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.CreateGroupResponseAddressesItemUserProfile.Raw, CommonApi.CreateGroupResponseAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.js index d635165f2c1..6725a6298be 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseAddressesItemUserProfileBackgroundImage } from './CreateGroupResponseAddressesItemUserProfileBackgroundImage'; - export const CreateGroupResponseAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.d.ts index a59601e6fd3..59e8726f4a9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateGroupResponseAddressesItemUserProfileBackgroundImage.Raw, CommonApi.CreateGroupResponseAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.js index 7b6d7f176c1..150f0112f62 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.d.ts index 970858271eb..85a890fcac6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseAddressesItemUserProfileTagsItem.Raw, CommonApi.CreateGroupResponseAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.js index d63cdb40938..bb6ad5c0ee1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.d.ts index 689c1672727..763123b8ae6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseAddressesItemWalletId: core.serialization.Schema< serializers.CreateGroupResponseAddressesItemWalletId.Raw, CommonApi.CreateGroupResponseAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.js index cb3c8d7e090..63b3524c6c7 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.d.ts index b598dbb91f6..d6d95d5442a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseBase: core.serialization.Schema< serializers.CreateGroupResponseBase.Raw, CommonApi.CreateGroupResponseBase diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.js index 4163bae6b00..46648372265 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.d.ts index baad50de1b4..966044c1a16 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.d.ts @@ -8,7 +8,6 @@ import { CreateGroupResponseChainNodeBalanceType } from './CreateGroupResponseCh import { CreateGroupResponseChainNodeContractsItem } from './CreateGroupResponseChainNodeContractsItem'; import { CreateGroupResponseChainNodeCosmosGovVersion } from './CreateGroupResponseChainNodeCosmosGovVersion'; import { CreateGroupResponseChainNodeHealth } from './CreateGroupResponseChainNodeHealth'; - export declare const CreateGroupResponseChainNode: core.serialization.ObjectSchema< serializers.CreateGroupResponseChainNode.Raw, CommonApi.CreateGroupResponseChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.js index 233caa67205..b65916c9fd3 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNode.js @@ -6,7 +6,6 @@ import { CreateGroupResponseChainNodeBalanceType } from './CreateGroupResponseCh import { CreateGroupResponseChainNodeContractsItem } from './CreateGroupResponseChainNodeContractsItem'; import { CreateGroupResponseChainNodeCosmosGovVersion } from './CreateGroupResponseChainNodeCosmosGovVersion'; import { CreateGroupResponseChainNodeHealth } from './CreateGroupResponseChainNodeHealth'; - export const CreateGroupResponseChainNode = core.serialization.object({ id: core.serialization.number().optional(), url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.d.ts index 83c9cfb05a9..3966f7f55ee 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseChainNodeBalanceType: core.serialization.Schema< serializers.CreateGroupResponseChainNodeBalanceType.Raw, CommonApi.CreateGroupResponseChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.js index e4993aa123d..023460377d3 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseChainNodeBalanceType = core.serialization.enum_( ['terra', 'ethereum', 'solana', 'cosmos', 'near', 'substrate'], ); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.d.ts index 8c49a576395..3373a20d1af 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseChainNodeContractsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseChainNodeContractsItem.Raw, CommonApi.CreateGroupResponseChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.js index 909e1d0dc72..1b89e8b4a9d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.d.ts index f2df0069647..79b66a3f3c5 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseChainNodeCosmosGovVersion: core.serialization.Schema< serializers.CreateGroupResponseChainNodeCosmosGovVersion.Raw, CommonApi.CreateGroupResponseChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.js index ffd05261637..54eb8f428a8 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.d.ts index 9d95b8abbd7..47b4932c38e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseChainNodeHealth: core.serialization.Schema< serializers.CreateGroupResponseChainNodeHealth.Raw, CommonApi.CreateGroupResponseChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.js index ec144a78922..2130628b441 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseChainNodeHealth.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseChainNodeHealth = core.serialization.enum_([ 'failed', 'healthy', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts index 4db20f663ce..78f51da1ae4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseCommunityStakesItemStakeTransactionsItem } from './CreateGroupResponseCommunityStakesItemStakeTransactionsItem'; - export declare const CreateGroupResponseCommunityStakesItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseCommunityStakesItem.Raw, CommonApi.CreateGroupResponseCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.js index d224d5f0c3f..96480b1adbe 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseCommunityStakesItemStakeTransactionsItem } from './CreateGroupResponseCommunityStakesItemStakeTransactionsItem'; - export const CreateGroupResponseCommunityStakesItem = core.serialization.object( { id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts index f5969e6010b..ca2f146190d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection } from './CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const CreateGroupResponseCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.CreateGroupResponseCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.js index 5d7712cd7ae..e03f242b573 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection } from './CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const CreateGroupResponseCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index 1d09bb6b818..f2c607a2a6f 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js index b6e9983538e..db35f5c619e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts index a276315871f..dc8e7344c4a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseCommunityTagsItemTag } from './CreateGroupResponseCommunityTagsItemTag'; - export declare const CreateGroupResponseCommunityTagsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseCommunityTagsItem.Raw, CommonApi.CreateGroupResponseCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.js index f89eda5d42f..abaf6794679 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseCommunityTagsItemTag } from './CreateGroupResponseCommunityTagsItemTag'; - export const CreateGroupResponseCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.d.ts index b4779725106..c578f0e455d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.CreateGroupResponseCommunityTagsItemTag.Raw, CommonApi.CreateGroupResponseCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.js index 0910f83cb08..de8c5490654 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.d.ts index 14a2d65bc9b..962886ca1c2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseContestManagersItemContestsItem } from './CreateGroupResponseContestManagersItemContestsItem'; import { CreateGroupResponseContestManagersItemTopicsItem } from './CreateGroupResponseContestManagersItemTopicsItem'; - export declare const CreateGroupResponseContestManagersItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItem.Raw, CommonApi.CreateGroupResponseContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.js index 3ce541e5407..4c70df81b2e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseContestManagersItemContestsItem } from './CreateGroupResponseContestManagersItemContestsItem'; import { CreateGroupResponseContestManagersItemTopicsItem } from './CreateGroupResponseContestManagersItemTopicsItem'; - export const CreateGroupResponseContestManagersItem = core.serialization.object( { contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts index 9acf58fe650..2e893684d50 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseContestManagersItemContestsItemActionsItem } from './CreateGroupResponseContestManagersItemContestsItemActionsItem'; import { CreateGroupResponseContestManagersItemContestsItemScoreItem } from './CreateGroupResponseContestManagersItemContestsItemScoreItem'; - export declare const CreateGroupResponseContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItemContestsItem.Raw, CommonApi.CreateGroupResponseContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.js index 6f93885af50..222b07af284 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseContestManagersItemContestsItemActionsItem } from './CreateGroupResponseContestManagersItemContestsItemActionsItem'; import { CreateGroupResponseContestManagersItemContestsItemScoreItem } from './CreateGroupResponseContestManagersItemContestsItemScoreItem'; - export const CreateGroupResponseContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts index 59c1c7b56dc..4d2734b59e9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseContestManagersItemContestsItemActionsItemAction } from './CreateGroupResponseContestManagersItemContestsItemActionsItemAction'; - export declare const CreateGroupResponseContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItemContestsItemActionsItem.Raw, CommonApi.CreateGroupResponseContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.js index 8c976e51c73..32bfeefecbb 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseContestManagersItemContestsItemActionsItemAction } from './CreateGroupResponseContestManagersItemContestsItemActionsItemAction'; - export const CreateGroupResponseContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.d.ts index 0fe0f52042c..fa63a3ca68e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.CreateGroupResponseContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.CreateGroupResponseContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.js index f67dd913fab..70849d5b3f8 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.d.ts index 4ecb67841c4..cfa51982a34 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItemContestsItemScoreItem.Raw, CommonApi.CreateGroupResponseContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.js index 086bda48800..8b8bb83f341 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts index 33d1fd2903b..148b3652d40 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem } from './CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem'; import { CreateGroupResponseContestManagersItemTopicsItemWeightedVoting } from './CreateGroupResponseContestManagersItemTopicsItemWeightedVoting'; - export declare const CreateGroupResponseContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItemTopicsItem.Raw, CommonApi.CreateGroupResponseContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.js index a0b79a54360..c45528dd372 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem } from './CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem'; import { CreateGroupResponseContestManagersItemTopicsItemWeightedVoting } from './CreateGroupResponseContestManagersItemTopicsItemWeightedVoting'; - export const CreateGroupResponseContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.d.ts index 1a5267e3f56..589bbb82dc6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.js index 263c9facde0..154fc20e7d1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.d.ts index 05fb337c693..5848d3c47e8 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.CreateGroupResponseContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.js index ef08bcfe963..f1c799f1caa 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.d.ts index dbfe06a177c..d38c65d6b83 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseDefaultPage: core.serialization.Schema< serializers.CreateGroupResponseDefaultPage.Raw, CommonApi.CreateGroupResponseDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.js index 5fa6f2a7014..6609faa4da4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', 'default_summary_view', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.d.ts index f4eab664797..a8e010d8167 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemMetadata } from './CreateGroupResponseGroupsItemMetadata'; import { CreateGroupResponseGroupsItemRequirementsItem } from './CreateGroupResponseGroupsItemRequirementsItem'; - export declare const CreateGroupResponseGroupsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItem.Raw, CommonApi.CreateGroupResponseGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.js index 3f27a38455f..cc3729efc84 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemMetadata } from './CreateGroupResponseGroupsItemMetadata'; import { CreateGroupResponseGroupsItemRequirementsItem } from './CreateGroupResponseGroupsItemRequirementsItem'; - export const CreateGroupResponseGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.d.ts index 0b1ca371f0b..d8ac815f4e2 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemMetadata: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemMetadata.Raw, CommonApi.CreateGroupResponseGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.js index bd00ec29ad6..d1b87c45251 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), description: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts index 6b5aab2b948..6799354209c 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemAllow } from './CreateGroupResponseGroupsItemRequirementsItemAllow'; import { CreateGroupResponseGroupsItemRequirementsItemThreshold } from './CreateGroupResponseGroupsItemRequirementsItemThreshold'; - export declare const CreateGroupResponseGroupsItemRequirementsItem: core.serialization.Schema< serializers.CreateGroupResponseGroupsItemRequirementsItem.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace CreateGroupResponseGroupsItemRequirementsItem { type Raw = | CreateGroupResponseGroupsItemRequirementsItem.Threshold | CreateGroupResponseGroupsItemRequirementsItem.Allow; - interface Threshold extends CreateGroupResponseGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends CreateGroupResponseGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.js index 05aaba91494..4b3eb13c569 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemAllow } from './CreateGroupResponseGroupsItemRequirementsItemAllow'; import { CreateGroupResponseGroupsItemRequirementsItemThreshold } from './CreateGroupResponseGroupsItemRequirementsItemThreshold'; - export const CreateGroupResponseGroupsItemRequirementsItem = core.serialization .union('rule', { threshold: CreateGroupResponseGroupsItemRequirementsItemThreshold, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts index 2c7a6c86ac3..bf5a2679314 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemAllowData } from './CreateGroupResponseGroupsItemRequirementsItemAllowData'; - export declare const CreateGroupResponseGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemAllow.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.js index 81e93e63581..492ecfaf8bf 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemAllowData } from './CreateGroupResponseGroupsItemRequirementsItemAllowData'; - export const CreateGroupResponseGroupsItemRequirementsItemAllow = core.serialization.object({ data: CreateGroupResponseGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.d.ts index 777c4096803..92cd287c930 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemAllowData.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.js index 307ec5058af..49e7da5438b 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts index 7908954dfab..004db764c69 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdData } from './CreateGroupResponseGroupsItemRequirementsItemThresholdData'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThreshold.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.js index f49a8cb0a1f..957a3ebc335 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdData } from './CreateGroupResponseGroupsItemRequirementsItemThresholdData'; - export const CreateGroupResponseGroupsItemRequirementsItemThreshold = core.serialization.object({ data: CreateGroupResponseGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts index 214eecfd840..71a2746e1ec 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdData.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.js index 9c090aebfaf..3f0af9860ba 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts index 8d7ff1ea06d..9c04d386a37 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne } f import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.js index 8e84d99a368..662e10740e1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne } f import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index ce3818eb9bc..99314e77d4e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.js index e9dd9aac105..5fda13118d5 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index ec38def8915..6f13a07d8d8 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.js index 21a36b668ce..e928bdfe5e1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 75725071912..0b488aa6a50 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index d50d84007b3..67ab1d1a105 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 78c422822ba..5259799c22a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js index bf7f03edab2..1d6f9e50239 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 840c2c2e576..7c60bd99455 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index a8d68da19f4..d20d8409043 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index dacb3995e7e..3dee4505bfa 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index 49dc3f2b4cc..979da0acb7d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.d.ts index 226b1be0f96..3181c210708 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseHasHomepage: core.serialization.Schema< serializers.CreateGroupResponseHasHomepage.Raw, CommonApi.CreateGroupResponseHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.js index cce6c49c34e..96d99b00c41 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseHasHomepage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseHasHomepage = core.serialization.enum_([ 'true', 'false', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.d.ts index fcbb41f92e9..9debe70d705 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseSocialLinksItem: core.serialization.Schema< serializers.CreateGroupResponseSocialLinksItem.Raw, CommonApi.CreateGroupResponseSocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.js index b8bac9599af..da7767b0cc6 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseSocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseSocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.d.ts index 6fb1848226b..99a32f14463 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseTermsZero } from './CreateGroupResponseTermsZero'; - export declare const CreateGroupResponseTerms: core.serialization.Schema< serializers.CreateGroupResponseTerms.Raw, CommonApi.CreateGroupResponseTerms diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.js index e2869d39c66..647d205fa73 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateGroupResponseTermsZero } from './CreateGroupResponseTermsZero'; - export const CreateGroupResponseTerms = core.serialization.undiscriminatedUnion( [CreateGroupResponseTermsZero, core.serialization.string()], ); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.d.ts index c5373ea22cf..bfc31a7a68a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseTermsZero: core.serialization.Schema< serializers.CreateGroupResponseTermsZero.Raw, CommonApi.CreateGroupResponseTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.js index 1b9cf065893..2aae171981a 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.d.ts index a779ab430df..eba650f9f67 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateGroupResponseTopicsItemContestTopicsItem } from './CreateGroupResponseTopicsItemContestTopicsItem'; import { CreateGroupResponseTopicsItemWeightedVoting } from './CreateGroupResponseTopicsItemWeightedVoting'; - export declare const CreateGroupResponseTopicsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseTopicsItem.Raw, CommonApi.CreateGroupResponseTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.js index fbc46adfab7..2ec6c2229e0 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateGroupResponseTopicsItemContestTopicsItem } from './CreateGroupResponseTopicsItemContestTopicsItem'; import { CreateGroupResponseTopicsItemWeightedVoting } from './CreateGroupResponseTopicsItemWeightedVoting'; - export const CreateGroupResponseTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.d.ts index 2b999e3c18f..b1599ebe00e 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateGroupResponseTopicsItemContestTopicsItem.Raw, CommonApi.CreateGroupResponseTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.js index 8a8168ca12b..c0af531c903 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.d.ts index 0156c1908b2..7fa9a6ccf35 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseTopicsItemWeightedVoting: core.serialization.Schema< serializers.CreateGroupResponseTopicsItemWeightedVoting.Raw, CommonApi.CreateGroupResponseTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.js index acb2ddb8c40..ea45a70f24d 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.d.ts index d04530d673f..efb78ea32b9 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateGroupResponseType: core.serialization.Schema< serializers.CreateGroupResponseType.Raw, CommonApi.CreateGroupResponseType diff --git a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.js b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.js index 875bf973ef8..53930aacfd3 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateGroupResponseType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateGroupResponseType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.d.ts index 3d41bfe0ca0..e3457b373ce 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateTopicRequestWeightedVoting: core.serialization.Schema< serializers.CreateTopicRequestWeightedVoting.Raw, CommonApi.CreateTopicRequestWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.js index 68b3996d283..a21439f77ce 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicRequestWeightedVoting.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateTopicRequestWeightedVoting = core.serialization.enum_([ 'stake', 'erc20', diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.d.ts index 4cfeb7bdcbc..446b164eba3 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateTopicResponseTopic } from './CreateTopicResponseTopic'; - export declare const CreateTopicResponse: core.serialization.ObjectSchema< serializers.CreateTopicResponse.Raw, CommonApi.CreateTopicResponse diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.js b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.js index 2b9f023d141..4ef34c104f1 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateTopicResponseTopic } from './CreateTopicResponseTopic'; - export const CreateTopicResponse = core.serialization.object({ topic: CreateTopicResponseTopic, userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.d.ts index 11d315e08fe..1f567b9dab4 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateTopicResponseTopicContestTopicsItem } from './CreateTopicResponseTopicContestTopicsItem'; import { CreateTopicResponseTopicWeightedVoting } from './CreateTopicResponseTopicWeightedVoting'; - export declare const CreateTopicResponseTopic: core.serialization.ObjectSchema< serializers.CreateTopicResponseTopic.Raw, CommonApi.CreateTopicResponseTopic diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.js b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.js index 83ee274af38..d113c146bbb 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateTopicResponseTopicContestTopicsItem } from './CreateTopicResponseTopicContestTopicsItem'; import { CreateTopicResponseTopicWeightedVoting } from './CreateTopicResponseTopicWeightedVoting'; - export const CreateTopicResponseTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.d.ts index f7b9e91315f..57a0faf6211 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateTopicResponseTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateTopicResponseTopicContestTopicsItem.Raw, CommonApi.CreateTopicResponseTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.js index 953494789c1..20c9229c023 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateTopicResponseTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.d.ts index 472092836d4..29dcf78cb93 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateTopicResponseTopicWeightedVoting: core.serialization.Schema< serializers.CreateTopicResponseTopicWeightedVoting.Raw, CommonApi.CreateTopicResponseTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.js index 8e56dc167d7..793691d3557 100644 --- a/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/CreateTopicResponseTopicWeightedVoting.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateTopicResponseTopicWeightedVoting = core.serialization.enum_([ 'stake', 'erc20', diff --git a/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.d.ts index 62cd4801671..ca0759e9def 100644 --- a/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const DeleteGroupResponse: core.serialization.ObjectSchema< serializers.DeleteGroupResponse.Raw, CommonApi.DeleteGroupResponse diff --git a/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.js b/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.js index ed30d479476..24ad2d0c308 100644 --- a/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/DeleteGroupResponse.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const DeleteGroupResponse = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.d.ts index ec91a54455d..c2b5a908071 100644 --- a/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const DeleteTopicResponse: core.serialization.ObjectSchema< serializers.DeleteTopicResponse.Raw, CommonApi.DeleteTopicResponse diff --git a/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.js b/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.js index 79eb8c85585..1e3d8d21a9a 100644 --- a/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/DeleteTopicResponse.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const DeleteTopicResponse = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.d.ts index 9fa44474a4c..ed900c180dd 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesRequestBase: core.serialization.Schema< serializers.GetCommunitiesRequestBase.Raw, CommonApi.GetCommunitiesRequestBase diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.js index 4543b6d9c47..9001ee18dc4 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesRequestBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.d.ts index 3375f448f5c..40115153378 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesRequestNetwork: core.serialization.Schema< serializers.GetCommunitiesRequestNetwork.Raw, CommonApi.GetCommunitiesRequestNetwork diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.js index 87a0acb6dbb..783488c499c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestNetwork.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesRequestNetwork = core.serialization.enum_([ 'ethereum', 'erc20', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.d.ts index d2153a9485d..235720dede9 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesRequestOrderBy: core.serialization.Schema< serializers.GetCommunitiesRequestOrderBy.Raw, CommonApi.GetCommunitiesRequestOrderBy diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.js index 699e6678c0e..c5a1fdb91eb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderBy.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesRequestOrderBy = core.serialization.enum_([ 'profile_count', 'lifetime_thread_count', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.d.ts index 36bf1be28a1..47700a47af5 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesRequestOrderDirection: core.serialization.Schema< serializers.GetCommunitiesRequestOrderDirection.Raw, CommonApi.GetCommunitiesRequestOrderDirection diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.js index 537ec0b3afe..d8f6aaa1b4b 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestOrderDirection.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesRequestOrderDirection = core.serialization.enum_([ 'ASC', 'DESC', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.d.ts index 22402f3fb58..7f08056c953 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesRequestRelevanceBy: core.serialization.Schema< serializers.GetCommunitiesRequestRelevanceBy.Raw, CommonApi.GetCommunitiesRequestRelevanceBy diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.js index 82d8330f44e..7d6ae02b931 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesRequestRelevanceBy.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesRequestRelevanceBy = core.serialization.enum_([ 'tag_ids', 'membership', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.d.ts index 261fa8152a3..b30b3a86d1a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItem } from './GetCommunitiesResponseResultsItem'; - export declare const GetCommunitiesResponse: core.serialization.ObjectSchema< serializers.GetCommunitiesResponse.Raw, CommonApi.GetCommunitiesResponse diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.js index 3a2dafb1379..7923e8ce3cf 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItem } from './GetCommunitiesResponseResultsItem'; - export const GetCommunitiesResponse = core.serialization.object({ limit: core.serialization.number(), page: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.d.ts index 8b0255a7436..833d8cbbaad 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.d.ts @@ -17,7 +17,6 @@ import { GetCommunitiesResponseResultsItemSocialLinksItem } from './GetCommuniti import { GetCommunitiesResponseResultsItemTerms } from './GetCommunitiesResponseResultsItemTerms'; import { GetCommunitiesResponseResultsItemTopicsItem } from './GetCommunitiesResponseResultsItemTopicsItem'; import { GetCommunitiesResponseResultsItemType } from './GetCommunitiesResponseResultsItemType'; - export declare const GetCommunitiesResponseResultsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItem.Raw, CommonApi.GetCommunitiesResponseResultsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.js index 30ef01608d3..bb8dd6d4141 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItem.js @@ -15,7 +15,6 @@ import { GetCommunitiesResponseResultsItemSocialLinksItem } from './GetCommuniti import { GetCommunitiesResponseResultsItemTerms } from './GetCommunitiesResponseResultsItemTerms'; import { GetCommunitiesResponseResultsItemTopicsItem } from './GetCommunitiesResponseResultsItemTopicsItem'; import { GetCommunitiesResponseResultsItemType } from './GetCommunitiesResponseResultsItemType'; - export const GetCommunitiesResponseResultsItem = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts index 1ac316144d0..9a3ec309498 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemAddressesItemRole } from './GetCommunitiesResponseResultsItemAddressesItemRole'; import { GetCommunitiesResponseResultsItemAddressesItemUser } from './GetCommunitiesResponseResultsItemAddressesItemUser'; import { GetCommunitiesResponseResultsItemAddressesItemWalletId } from './GetCommunitiesResponseResultsItemAddressesItemWalletId'; - export declare const GetCommunitiesResponseResultsItemAddressesItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemAddressesItem.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.js index 7e552436182..09bfa2e5c3f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemAddressesItemRole } from './GetCommunitiesResponseResultsItemAddressesItemRole'; import { GetCommunitiesResponseResultsItemAddressesItemUser } from './GetCommunitiesResponseResultsItemAddressesItemUser'; import { GetCommunitiesResponseResultsItemAddressesItemWalletId } from './GetCommunitiesResponseResultsItemAddressesItemWalletId'; - export const GetCommunitiesResponseResultsItemAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.d.ts index 18531512510..076d841595b 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemAddressesItemRole: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemAddressesItemRole.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.js index 264a07af1ab..08be374a4d7 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemAddressesItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts index 85e607ad1a0..05013597ab8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { GetCommunitiesResponseResultsItemAddressesItemUserApiKey } from './GetC import { GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval } from './GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfile } from './GetCommunitiesResponseResultsItemAddressesItemUserProfile'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem } from './GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem'; - export declare const GetCommunitiesResponseResultsItemAddressesItemUser: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemAddressesItemUser.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.js index 04f2a61f785..71b95b39071 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUser.js @@ -6,7 +6,6 @@ import { GetCommunitiesResponseResultsItemAddressesItemUserApiKey } from './GetC import { GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval } from './GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfile } from './GetCommunitiesResponseResultsItemAddressesItemUserProfile'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem } from './GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem'; - export const GetCommunitiesResponseResultsItemAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..6a99a68814f --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommunitiesResponseResultsItemAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommunitiesResponseResultsItemAddressesItemUserApiKey.Raw, + CommonApi.GetCommunitiesResponseResultsItemAddressesItemUserApiKey +>; +export declare namespace GetCommunitiesResponseResultsItemAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js new file mode 100644 index 00000000000..7d97e8b6a70 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommunitiesResponseResultsItemAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.d.ts index 1bf49fc53c9..3086734294c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.js index 5630ea47aff..539f4176071 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts index 56083490835..6e35ce389c1 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage } from './GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage'; - export declare const GetCommunitiesResponseResultsItemAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemAddressesItemUserProfile.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.js index 4015a6c304d..ad05484ef88 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage } from './GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage'; - export const GetCommunitiesResponseResultsItemAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.d.ts index 206aa775f5f..6249f1e393a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.js index 53e14df950d..d8665570817 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.d.ts index e0ae0cff2e0..e8a2f037d2b 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.js index 65f801b6762..b285389900d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.d.ts index c81108d9251..215a6193e59 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemAddressesItemWalletId: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemAddressesItemWalletId.Raw, CommonApi.GetCommunitiesResponseResultsItemAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.js index 4806caed595..13a21c7f457 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.d.ts index 00ac27c58b7..69a08135ed9 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemBase: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemBase.Raw, CommonApi.GetCommunitiesResponseResultsItemBase diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.js index 505ef30b561..c64689cf467 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts index 0aac06b997f..fdbd39eb552 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.d.ts @@ -8,7 +8,6 @@ import { GetCommunitiesResponseResultsItemChainNodeBalanceType } from './GetComm import { GetCommunitiesResponseResultsItemChainNodeContractsItem } from './GetCommunitiesResponseResultsItemChainNodeContractsItem'; import { GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion } from './GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion'; import { GetCommunitiesResponseResultsItemChainNodeHealth } from './GetCommunitiesResponseResultsItemChainNodeHealth'; - export declare const GetCommunitiesResponseResultsItemChainNode: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemChainNode.Raw, CommonApi.GetCommunitiesResponseResultsItemChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.js index f5cd29f02d4..02c915a259b 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNode.js @@ -6,7 +6,6 @@ import { GetCommunitiesResponseResultsItemChainNodeBalanceType } from './GetComm import { GetCommunitiesResponseResultsItemChainNodeContractsItem } from './GetCommunitiesResponseResultsItemChainNodeContractsItem'; import { GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion } from './GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion'; import { GetCommunitiesResponseResultsItemChainNodeHealth } from './GetCommunitiesResponseResultsItemChainNodeHealth'; - export const GetCommunitiesResponseResultsItemChainNode = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.d.ts index 71043ce7043..a832f4908ae 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemChainNodeBalanceType: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemChainNodeBalanceType.Raw, CommonApi.GetCommunitiesResponseResultsItemChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.js index 4247cf80189..9b328fd9ca3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemChainNodeBalanceType = core.serialization.enum_([ 'terra', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.d.ts index f117546c80a..708f8548f4e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemChainNodeContractsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemChainNodeContractsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.js index 4e43fc865cd..ec7412e4d00 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.d.ts index 8d6d27e85f8..6a6724cab9d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.Raw, CommonApi.GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.js index 4300e913a28..2c86362b459 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.d.ts index f63e13c92ea..f90c2fdd84c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemChainNodeHealth: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemChainNodeHealth.Raw, CommonApi.GetCommunitiesResponseResultsItemChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.js index bf299f25868..375cc8d419a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemChainNodeHealth.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemChainNodeHealth = core.serialization.enum_(['failed', 'healthy']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts index 118b931bbac..854cd284b02 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem } from './GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem'; - export declare const GetCommunitiesResponseResultsItemCommunityStakesItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemCommunityStakesItem.Raw, CommonApi.GetCommunitiesResponseResultsItemCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.js index 4c761f08d00..0c55dd25adb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem } from './GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem'; - export const GetCommunitiesResponseResultsItemCommunityStakesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts index 52f18d307df..79259693308 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection } from './GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.js index 07f95489e6c..654dd371ce2 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection } from './GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index 74185cfe1d2..819d6b5ab01 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.js index e5d3e5849c9..9fb2f282ca8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts index c4844b09059..1b477b9445f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemCommunityTagsItemTag } from './GetCommunitiesResponseResultsItemCommunityTagsItemTag'; - export declare const GetCommunitiesResponseResultsItemCommunityTagsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemCommunityTagsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.js index 4c734235867..d67c7de4ffc 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemCommunityTagsItemTag } from './GetCommunitiesResponseResultsItemCommunityTagsItemTag'; - export const GetCommunitiesResponseResultsItemCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.d.ts index 237047ad067..c14842dd03e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemCommunityTagsItemTag.Raw, CommonApi.GetCommunitiesResponseResultsItemCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.js index 96c74c826fb..1fd22b4f0f4 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts index 415d60c1da9..a1203998d70 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItem } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItem'; - export declare const GetCommunitiesResponseResultsItemContestManagersItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.js index 9b987f3f42e..7fd418aca2d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItem } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItem'; - export const GetCommunitiesResponseResultsItemContestManagersItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts index 9c4908e0693..aa2ae9df9b0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItemContestsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.js index 6e3857372e7..123fd1a55bb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem'; - export const GetCommunitiesResponseResultsItemContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts index ea767bf1bcb..62c896be868 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.js index 90a2a4d6a8b..f6d79287da4 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction } from './GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction'; - export const GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.d.ts index 28f19613e5e..2e364dff533 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.js index 2a36a99a514..9186a64b5c0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.d.ts index 75261b0090d..13db6caaff2 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.js index 897050ba497..fd647126ea2 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts index af6e68113f5..a3fd097f1f4 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.js index 841d29963d0..3ba42340b73 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem'; import { GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting } from './GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting'; - export const GetCommunitiesResponseResultsItemContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.d.ts index b48f4e7c2ab..d49d86c5d0e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.js index 204f6e968be..e84494487a0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.d.ts index e8f670ae497..80eec592ac1 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.js index 62c374499f9..3730aa27509 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.d.ts index dd580ce94ec..4ace839bb6e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemDefaultPage: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemDefaultPage.Raw, CommonApi.GetCommunitiesResponseResultsItemDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.js index fc42668c16e..5a8ffe31cf0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts index 4bc51fe0ffc..4203d6f6f47 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemMetadata } from './GetCommunitiesResponseResultsItemGroupsItemMetadata'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItem } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItem'; - export declare const GetCommunitiesResponseResultsItemGroupsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.js index c1bf6dac212..91ba799e4ba 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemMetadata } from './GetCommunitiesResponseResultsItemGroupsItemMetadata'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItem } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItem'; - export const GetCommunitiesResponseResultsItemGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.d.ts index ac20c31f253..c35d74a354c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemMetadata: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemMetadata.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.js index 484d90ec8f5..f3432f7f14f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts index fb353749c24..718cceae6b5 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItem: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace GetCommunitiesResponseResultsItemGroupsItemRequirements type Raw = | GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.Threshold | GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.Allow; - interface Threshold extends GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.js index 826fe827f29..188bed24065 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItem = core.serialization .union('rule', { diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts index be8660dfbba..3ca4862ba1a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.js index 0c5bf1238c4..42680444cb8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllow = core.serialization.object({ data: GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.d.ts index d4e28b3795d..96ff324b550 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.js index 11f160a5058..6e920582d0e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts index c281e7003bb..b1f1e2e31c8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.js index cb1a4531fcf..4d1cfde4888 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThreshold = core.serialization.object({ data: GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts index 61ecca8ad2e..7e59b2cdbd3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.js index 33335153da6..9ba80199fc3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts index 7a69feca6a4..23953c45432 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDat import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.js index 1292d0c033f..b9d05d6b764 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDat import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index 8c1d30a280e..57c3b15641f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.js index 0dc44b6a6c3..1f1aac15bbb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index a5979a8a64f..7888fcf2075 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.js index edc24754c06..141d8428af1 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 33ebddc35c1..c4adf9b8a55 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index 8ca70092737..03341b35041 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 9ff27d83f65..74fa6194bbd 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.js index 8c880e10efb..1441d888735 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 6d399bc3cc0..3a27ae5570a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index d73ff92668f..16026e0a1c6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index 459d807db35..13a3349a15c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index 4552f3d3c1e..e8b3320d34f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.d.ts index d7cf04b3a50..f26f0ea58a3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemHasHomepage: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemHasHomepage.Raw, CommonApi.GetCommunitiesResponseResultsItemHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.js index b568475566b..cd6de5f6172 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemHasHomepage.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemHasHomepage = core.serialization.enum_(['true', 'false']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.d.ts index bdb528705d6..e0575a2e811 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemSocialLinksItem: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemSocialLinksItem.Raw, CommonApi.GetCommunitiesResponseResultsItemSocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.js index 90349c2655f..bad29bdbddb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemSocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemSocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts index 638a227c3ff..b15616ece51 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemTermsZero } from './GetCommunitiesResponseResultsItemTermsZero'; - export declare const GetCommunitiesResponseResultsItemTerms: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemTerms.Raw, CommonApi.GetCommunitiesResponseResultsItemTerms diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.js index 23745f99023..86c658985e7 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemTermsZero } from './GetCommunitiesResponseResultsItemTermsZero'; - export const GetCommunitiesResponseResultsItemTerms = core.serialization.undiscriminatedUnion([ GetCommunitiesResponseResultsItemTermsZero, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.d.ts index b3890d5f1eb..c07c5ba46af 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemTermsZero: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemTermsZero.Raw, CommonApi.GetCommunitiesResponseResultsItemTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.js index 2fc05336e33..61870a9203d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts index f5022927eda..6ca1ee6ebfe 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem } from './GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem'; import { GetCommunitiesResponseResultsItemTopicsItemWeightedVoting } from './GetCommunitiesResponseResultsItemTopicsItemWeightedVoting'; - export declare const GetCommunitiesResponseResultsItemTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemTopicsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.js index ec809906b85..6a8eecc00ba 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem } from './GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem'; import { GetCommunitiesResponseResultsItemTopicsItemWeightedVoting } from './GetCommunitiesResponseResultsItemTopicsItemWeightedVoting'; - export const GetCommunitiesResponseResultsItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.d.ts index 5c76c9dac08..b64a7506759 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.Raw, CommonApi.GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.js index 11428643782..cb5495cc1d0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.d.ts index 50f32ea5d2b..96e43b9a245 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.Raw, CommonApi.GetCommunitiesResponseResultsItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.js index c069ddf4efc..5e1fa75ecd6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.d.ts index 7dfd83b2ce1..d9c56f9be0e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunitiesResponseResultsItemType: core.serialization.Schema< serializers.GetCommunitiesResponseResultsItemType.Raw, CommonApi.GetCommunitiesResponseResultsItemType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.js index 3601a9f70e9..e7f30b29146 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunitiesResponseResultsItemType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunitiesResponseResultsItemType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.d.ts index ba64add0d0f..98327463396 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddresses } from './GetCommunityResponseAddresses'; - export declare const GetCommunityResponse: core.serialization.Schema< serializers.GetCommunityResponse.Raw, CommonApi.GetCommunityResponse diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.js index 0fc44bdfb19..5670e57e976 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddresses } from './GetCommunityResponseAddresses'; - export const GetCommunityResponse = core.serialization.undiscriminatedUnion([ GetCommunityResponseAddresses, core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.d.ts index 5d2745b2291..6e0259de8f7 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.d.ts @@ -18,7 +18,6 @@ import { GetCommunityResponseAddressesSocialLinksItem } from './GetCommunityResp import { GetCommunityResponseAddressesTerms } from './GetCommunityResponseAddressesTerms'; import { GetCommunityResponseAddressesTopicsItem } from './GetCommunityResponseAddressesTopicsItem'; import { GetCommunityResponseAddressesType } from './GetCommunityResponseAddressesType'; - export declare const GetCommunityResponseAddresses: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddresses.Raw, CommonApi.GetCommunityResponseAddresses diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.js index d49a1929dea..116418bac61 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddresses.js @@ -16,7 +16,6 @@ import { GetCommunityResponseAddressesSocialLinksItem } from './GetCommunityResp import { GetCommunityResponseAddressesTerms } from './GetCommunityResponseAddressesTerms'; import { GetCommunityResponseAddressesTopicsItem } from './GetCommunityResponseAddressesTopicsItem'; import { GetCommunityResponseAddressesType } from './GetCommunityResponseAddressesType'; - export const GetCommunityResponseAddresses = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts index 103c9e6c048..4acb84c56ee 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { GetCommunityResponseAddressesAddressesItemRole } from './GetCommunityResponseAddressesAddressesItemRole'; import { GetCommunityResponseAddressesAddressesItemUser } from './GetCommunityResponseAddressesAddressesItemUser'; import { GetCommunityResponseAddressesAddressesItemWalletId } from './GetCommunityResponseAddressesAddressesItemWalletId'; - export declare const GetCommunityResponseAddressesAddressesItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAddressesItem.Raw, CommonApi.GetCommunityResponseAddressesAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.js index b63b936a8df..5e13044971d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesAddressesItemRole } from './GetCommunityResponseAddressesAddressesItemRole'; import { GetCommunityResponseAddressesAddressesItemUser } from './GetCommunityResponseAddressesAddressesItemUser'; import { GetCommunityResponseAddressesAddressesItemWalletId } from './GetCommunityResponseAddressesAddressesItemWalletId'; - export const GetCommunityResponseAddressesAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.d.ts index c63a9f2546e..cfa73c64cdd 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAddressesItemRole: core.serialization.Schema< serializers.GetCommunityResponseAddressesAddressesItemRole.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.js index c5756d5fe5a..0f3e0ce24d6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAddressesItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts index 90b08c0192c..773d518d4d4 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { GetCommunityResponseAddressesAddressesItemUserApiKey } from './GetCommu import { GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval } from './GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval'; import { GetCommunityResponseAddressesAddressesItemUserProfile } from './GetCommunityResponseAddressesAddressesItemUserProfile'; import { GetCommunityResponseAddressesAddressesItemUserProfileTagsItem } from './GetCommunityResponseAddressesAddressesItemUserProfileTagsItem'; - export declare const GetCommunityResponseAddressesAddressesItemUser: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAddressesItemUser.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.js index c3109f8c2b5..6aa255a4aac 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUser.js @@ -6,7 +6,6 @@ import { GetCommunityResponseAddressesAddressesItemUserApiKey } from './GetCommu import { GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval } from './GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval'; import { GetCommunityResponseAddressesAddressesItemUserProfile } from './GetCommunityResponseAddressesAddressesItemUserProfile'; import { GetCommunityResponseAddressesAddressesItemUserProfileTagsItem } from './GetCommunityResponseAddressesAddressesItemUserProfileTagsItem'; - export const GetCommunityResponseAddressesAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..1934039a258 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetCommunityResponseAddressesAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.GetCommunityResponseAddressesAddressesItemUserApiKey.Raw, + CommonApi.GetCommunityResponseAddressesAddressesItemUserApiKey +>; +export declare namespace GetCommunityResponseAddressesAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js new file mode 100644 index 00000000000..e4dd6e86cab --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetCommunityResponseAddressesAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.d.ts index 94f25ed9d3d..1aa50cc51bb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.js index 62701822c9f..65360315306 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts index 26bab1c4576..43b10bd1c24 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage } from './GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage'; - export declare const GetCommunityResponseAddressesAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAddressesItemUserProfile.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.js index e4d6cdc92dd..b3360286f21 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage } from './GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage'; - export const GetCommunityResponseAddressesAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.d.ts index 37c433f7906..2b4193946e8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.js index fd793a6de47..84c50e027b6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.d.ts index 3a5de246670..eab6f429a65 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.js index fbad88c2cf7..bf23b4b5d54 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.d.ts index 42154825b2c..299d204f969 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAddressesItemWalletId: core.serialization.Schema< serializers.GetCommunityResponseAddressesAddressesItemWalletId.Raw, CommonApi.GetCommunityResponseAddressesAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.js index 0dd6b2c972a..e07bdcfaf15 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts index ddeeb62775c..b1e013417fe 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesAdminsAndModsItemRole } from './GetCommunityResponseAddressesAdminsAndModsItemRole'; - export declare const GetCommunityResponseAddressesAdminsAndModsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesAdminsAndModsItem.Raw, CommonApi.GetCommunityResponseAddressesAdminsAndModsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.js index af184731dd1..4b8f5b3b372 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesAdminsAndModsItemRole } from './GetCommunityResponseAddressesAdminsAndModsItemRole'; - export const GetCommunityResponseAddressesAdminsAndModsItem = core.serialization.object({ address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.d.ts index 109fc9d0623..ee5dce91a84 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesAdminsAndModsItemRole: core.serialization.Schema< serializers.GetCommunityResponseAddressesAdminsAndModsItemRole.Raw, CommonApi.GetCommunityResponseAddressesAdminsAndModsItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.js index bc7e1d669ab..6826e1131cb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesAdminsAndModsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesAdminsAndModsItemRole = core.serialization.enum_(['admin', 'moderator']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.d.ts index 78857fa3a8d..62886906ab5 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesBase: core.serialization.Schema< serializers.GetCommunityResponseAddressesBase.Raw, CommonApi.GetCommunityResponseAddressesBase diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.js index 14ca23d63b2..62464caffcf 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts index 8298a4e574b..4347d52586d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.d.ts @@ -8,7 +8,6 @@ import { GetCommunityResponseAddressesChainNodeBalanceType } from './GetCommunit import { GetCommunityResponseAddressesChainNodeContractsItem } from './GetCommunityResponseAddressesChainNodeContractsItem'; import { GetCommunityResponseAddressesChainNodeCosmosGovVersion } from './GetCommunityResponseAddressesChainNodeCosmosGovVersion'; import { GetCommunityResponseAddressesChainNodeHealth } from './GetCommunityResponseAddressesChainNodeHealth'; - export declare const GetCommunityResponseAddressesChainNode: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesChainNode.Raw, CommonApi.GetCommunityResponseAddressesChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.js index e0dd42f50c9..9a78a3ee619 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNode.js @@ -6,7 +6,6 @@ import { GetCommunityResponseAddressesChainNodeBalanceType } from './GetCommunit import { GetCommunityResponseAddressesChainNodeContractsItem } from './GetCommunityResponseAddressesChainNodeContractsItem'; import { GetCommunityResponseAddressesChainNodeCosmosGovVersion } from './GetCommunityResponseAddressesChainNodeCosmosGovVersion'; import { GetCommunityResponseAddressesChainNodeHealth } from './GetCommunityResponseAddressesChainNodeHealth'; - export const GetCommunityResponseAddressesChainNode = core.serialization.object( { id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.d.ts index 7e065e03832..414aca009bc 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesChainNodeBalanceType: core.serialization.Schema< serializers.GetCommunityResponseAddressesChainNodeBalanceType.Raw, CommonApi.GetCommunityResponseAddressesChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.js index 2177de133cb..93379e97add 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesChainNodeBalanceType = core.serialization.enum_([ 'terra', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.d.ts index 488b1f24230..5560713fdd8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesChainNodeContractsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesChainNodeContractsItem.Raw, CommonApi.GetCommunityResponseAddressesChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.js index 9c2144d3bbe..62043d6d436 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.d.ts index d77c0068498..2124f2e0397 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesChainNodeCosmosGovVersion: core.serialization.Schema< serializers.GetCommunityResponseAddressesChainNodeCosmosGovVersion.Raw, CommonApi.GetCommunityResponseAddressesChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.js index a21fbd7df5f..34e3f813394 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.d.ts index d18a3f3ec4d..df475f6b152 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesChainNodeHealth: core.serialization.Schema< serializers.GetCommunityResponseAddressesChainNodeHealth.Raw, CommonApi.GetCommunityResponseAddressesChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.js index 576f2f795eb..c1c9a2a92b9 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesChainNodeHealth.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesChainNodeHealth = core.serialization.enum_(['failed', 'healthy']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts index 79eefa19340..dc7a090e096 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem } from './GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem'; - export declare const GetCommunityResponseAddressesCommunityStakesItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesCommunityStakesItem.Raw, CommonApi.GetCommunityResponseAddressesCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.js index cc239ad62a3..864b10fc3a6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem } from './GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem'; - export const GetCommunityResponseAddressesCommunityStakesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts index ee74b7ad8f3..e0cb67e6642 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection } from './GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.js index b0ebc10df76..dff92621c2a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection } from './GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index 3c1c0403150..a18fac07cd2 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.js index ca4f2fc198d..35a692c5097 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts index ec770375192..08f2624173e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesCommunityTagsItemTag } from './GetCommunityResponseAddressesCommunityTagsItemTag'; - export declare const GetCommunityResponseAddressesCommunityTagsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesCommunityTagsItem.Raw, CommonApi.GetCommunityResponseAddressesCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.js index 7d1ee8c9fc3..4891beb7cf0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesCommunityTagsItemTag } from './GetCommunityResponseAddressesCommunityTagsItemTag'; - export const GetCommunityResponseAddressesCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.d.ts index 62fe21cdc65..339bd224afb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesCommunityTagsItemTag.Raw, CommonApi.GetCommunityResponseAddressesCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.js index 9a82d8fa763..a71f5fe16b5 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts index e795ea3ce0d..9988c69fb0a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesContestManagersItemContestsItem } from './GetCommunityResponseAddressesContestManagersItemContestsItem'; import { GetCommunityResponseAddressesContestManagersItemTopicsItem } from './GetCommunityResponseAddressesContestManagersItemTopicsItem'; - export declare const GetCommunityResponseAddressesContestManagersItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.js index 2c319f1e1f3..0f7d61654d6 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesContestManagersItemContestsItem } from './GetCommunityResponseAddressesContestManagersItemContestsItem'; import { GetCommunityResponseAddressesContestManagersItemTopicsItem } from './GetCommunityResponseAddressesContestManagersItemTopicsItem'; - export const GetCommunityResponseAddressesContestManagersItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts index 3d3c08375dc..10092fdb59e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem } from './GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem'; import { GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem } from './GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem'; - export declare const GetCommunityResponseAddressesContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItemContestsItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.js index 2c7ae98bc88..40859e5ec9e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem } from './GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem'; import { GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem } from './GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem'; - export const GetCommunityResponseAddressesContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts index 05961371758..b504dcce42a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction } from './GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction'; - export declare const GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.js index 8e664f7e88a..18399009595 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction } from './GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction'; - export const GetCommunityResponseAddressesContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.d.ts index 040d27f4f9e..e12ce5a3e16 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.js index f07333eac6a..c51e979f30e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.d.ts index f4d1eab5cf3..0d77005b547 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.js index 12091033a58..9bd773d48f1 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts index 04da4d1ea30..1144612278d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem } from './GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem'; import { GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting } from './GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting'; - export declare const GetCommunityResponseAddressesContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItemTopicsItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.js index a105fd02085..fb60ea80712 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem } from './GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem'; import { GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting } from './GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting'; - export const GetCommunityResponseAddressesContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.d.ts index db8e38248d2..d360f1d7ba2 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.js index ddd3c3a3ea7..8bcf29a6da0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.d.ts index 4abaacd2d41..f45fc3e643e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.js index 315ed76b437..aa8fde4d7cc 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.d.ts index ca95db9af16..40238afca57 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesDefaultPage: core.serialization.Schema< serializers.GetCommunityResponseAddressesDefaultPage.Raw, CommonApi.GetCommunityResponseAddressesDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.js index 2791329345b..10ab2d1efc8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts index 59b6966ede6..a9d29615c4e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemMetadata } from './GetCommunityResponseAddressesGroupsItemMetadata'; import { GetCommunityResponseAddressesGroupsItemRequirementsItem } from './GetCommunityResponseAddressesGroupsItemRequirementsItem'; - export declare const GetCommunityResponseAddressesGroupsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItem.Raw, CommonApi.GetCommunityResponseAddressesGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.js index 4953197c509..56969c80d53 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemMetadata } from './GetCommunityResponseAddressesGroupsItemMetadata'; import { GetCommunityResponseAddressesGroupsItemRequirementsItem } from './GetCommunityResponseAddressesGroupsItemRequirementsItem'; - export const GetCommunityResponseAddressesGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.d.ts index d2f660193f9..b1ff4eb8941 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemMetadata: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemMetadata.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.js index e4fc7f2ab6c..6b347f827cf 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts index 549f2c34d0d..74c91ad95cf 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemAllow } from './GetCommunityResponseAddressesGroupsItemRequirementsItemAllow'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItem: core.serialization.Schema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItem.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace GetCommunityResponseAddressesGroupsItemRequirementsItem type Raw = | GetCommunityResponseAddressesGroupsItemRequirementsItem.Threshold | GetCommunityResponseAddressesGroupsItemRequirementsItem.Allow; - interface Threshold extends GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.js index 2541b48a282..274de6fcbea 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemAllow } from './GetCommunityResponseAddressesGroupsItemRequirementsItemAllow'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItem = core.serialization .union('rule', { diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts index 1247b18cb01..802c9e34184 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData } from './GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.js index 449bec13aea..846407e7b74 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData } from './GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemAllow = core.serialization.object({ data: GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.d.ts index 41f04dd7dcf..8a1c408066f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.js index 5eed40e9bf2..5853d0e9954 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts index 752cfe8edb8..3b4f3d12734 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.js index 8964a179a82..f6c913b27e8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThreshold = core.serialization.object({ data: GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts index 9b8bdc2feec..4cf75e0ca19 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.js index d4dd4989ab0..c73f5d08984 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts index 53514723855..f187ca169b3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSou import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.js index c12d49298f3..b3d1e3dd8bd 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSou import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index 15b1e8064ba..15627606fdb 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.js index 4dfafb05f38..5e203061e5d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index 96d55eb25d5..792c8118237 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.js index fc93b075b8d..969883c912f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index b5089026b2f..526b35a104a 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index ba257e53b91..a55b438b444 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 148aa56807d..b65d7662075 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.js index 035ea6e7020..3e61758d53e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 6bef97292c0..799ba9dd529 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index 58cd32a6926..23518904f7f 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index 615ac4dd850..514055b6bdd 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index 8b545cba8e6..a3fa43eb472 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.d.ts index c909473ac1f..f5ebcce80a3 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesHasHomepage: core.serialization.Schema< serializers.GetCommunityResponseAddressesHasHomepage.Raw, CommonApi.GetCommunityResponseAddressesHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.js index 13fdce06b2f..2a40ede9f95 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesHasHomepage.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesHasHomepage = core.serialization.enum_(['true', 'false']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.d.ts index 6a03b3d2b40..a02bacb5e02 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesSocialLinksItem: core.serialization.Schema< serializers.GetCommunityResponseAddressesSocialLinksItem.Raw, CommonApi.GetCommunityResponseAddressesSocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.js index a5e19e13533..8b1af93b221 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesSocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesSocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.d.ts index 2250e6b36d5..fdbb097549e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesTermsZero } from './GetCommunityResponseAddressesTermsZero'; - export declare const GetCommunityResponseAddressesTerms: core.serialization.Schema< serializers.GetCommunityResponseAddressesTerms.Raw, CommonApi.GetCommunityResponseAddressesTerms diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.js index 36d2ab287b2..dcd8bd1fe1c 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetCommunityResponseAddressesTermsZero } from './GetCommunityResponseAddressesTermsZero'; - export const GetCommunityResponseAddressesTerms = core.serialization.undiscriminatedUnion([ GetCommunityResponseAddressesTermsZero, diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.d.ts index e9497b94834..34191346455 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesTermsZero: core.serialization.Schema< serializers.GetCommunityResponseAddressesTermsZero.Raw, CommonApi.GetCommunityResponseAddressesTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.js index f0d912cf4e7..86303ed7cd8 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts index 47ffc7aeaec..acd80697f80 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetCommunityResponseAddressesTopicsItemContestTopicsItem } from './GetCommunityResponseAddressesTopicsItemContestTopicsItem'; import { GetCommunityResponseAddressesTopicsItemWeightedVoting } from './GetCommunityResponseAddressesTopicsItemWeightedVoting'; - export declare const GetCommunityResponseAddressesTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesTopicsItem.Raw, CommonApi.GetCommunityResponseAddressesTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.js index 60481457c88..d61587255ec 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { GetCommunityResponseAddressesTopicsItemContestTopicsItem } from './GetCommunityResponseAddressesTopicsItemContestTopicsItem'; import { GetCommunityResponseAddressesTopicsItemWeightedVoting } from './GetCommunityResponseAddressesTopicsItemWeightedVoting'; - export const GetCommunityResponseAddressesTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.d.ts index ae201efe631..8acfcc7f959 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.GetCommunityResponseAddressesTopicsItemContestTopicsItem.Raw, CommonApi.GetCommunityResponseAddressesTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.js index 713cd711bf0..28d1501ed75 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.d.ts index 2e987a2855d..181117977d0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesTopicsItemWeightedVoting: core.serialization.Schema< serializers.GetCommunityResponseAddressesTopicsItemWeightedVoting.Raw, CommonApi.GetCommunityResponseAddressesTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.js index d9389732d06..5cf4df33ab5 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.d.ts b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.d.ts index 4816aeba873..3ee2c9a5778 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetCommunityResponseAddressesType: core.serialization.Schema< serializers.GetCommunityResponseAddressesType.Raw, CommonApi.GetCommunityResponseAddressesType diff --git a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.js b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.js index 1061deddd53..a29a7c2cf63 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.js +++ b/libs/api-client/src/serialization/resources/community/types/GetCommunityResponseAddressesType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetCommunityResponseAddressesType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.d.ts index 7c899f231b5..24fc81e5339 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetMembersRequestMemberships: core.serialization.Schema< serializers.GetMembersRequestMemberships.Raw, CommonApi.GetMembersRequestMemberships diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.js b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.js index 01d24180fd3..8add8b2dd94 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestMemberships.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetMembersRequestMemberships = core.serialization.enum_([ 'in-group', 'not-in-group', diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.d.ts index 67311328d1d..c1c9935e85e 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetMembersRequestOrderBy: core.serialization.Schema< serializers.GetMembersRequestOrderBy.Raw, CommonApi.GetMembersRequestOrderBy diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.js b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.js index 9ed2eba1a33..a3eb15e0806 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderBy.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetMembersRequestOrderBy = core.serialization.enum_([ 'last_active', 'name', diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.d.ts index 1655e394c05..f01497f5465 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetMembersRequestOrderDirection: core.serialization.Schema< serializers.GetMembersRequestOrderDirection.Raw, CommonApi.GetMembersRequestOrderDirection diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.js b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.js index cddf8c66d72..0ad8579ab57 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersRequestOrderDirection.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetMembersRequestOrderDirection = core.serialization.enum_([ 'ASC', 'DESC', diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.d.ts index 2b5a1bef8b1..3b307c1944d 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetMembersResponseResultsItem } from './GetMembersResponseResultsItem'; - export declare const GetMembersResponse: core.serialization.ObjectSchema< serializers.GetMembersResponse.Raw, CommonApi.GetMembersResponse diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.js b/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.js index af5983fba74..92d0f0e97c0 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetMembersResponseResultsItem } from './GetMembersResponseResultsItem'; - export const GetMembersResponse = core.serialization.object({ limit: core.serialization.number(), page: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.d.ts index 5ffde286782..d4577906f17 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { GetMembersResponseResultsItemAddressesItem } from './GetMembersResponseResultsItemAddressesItem'; - export declare const GetMembersResponseResultsItem: core.serialization.ObjectSchema< serializers.GetMembersResponseResultsItem.Raw, CommonApi.GetMembersResponseResultsItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.js b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.js index 90275084504..eae83fbf798 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { GetMembersResponseResultsItemAddressesItem } from './GetMembersResponseResultsItemAddressesItem'; - export const GetMembersResponseResultsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), profileName: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.d.ts index 175bbf42f83..27e98a80721 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const GetMembersResponseResultsItemAddressesItem: core.serialization.ObjectSchema< serializers.GetMembersResponseResultsItemAddressesItem.Raw, CommonApi.GetMembersResponseResultsItemAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.js index 5c232762e79..3bcc9949417 100644 --- a/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/GetMembersResponseResultsItemAddressesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const GetMembersResponseResultsItemAddressesItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.d.ts new file mode 100644 index 00000000000..be5a9db0476 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.d.ts @@ -0,0 +1,22 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { JoinCommunityResponseBase } from './JoinCommunityResponseBase'; +import { JoinCommunityResponseWalletId } from './JoinCommunityResponseWalletId'; +export declare const JoinCommunityResponse: core.serialization.ObjectSchema< + serializers.JoinCommunityResponse.Raw, + CommonApi.JoinCommunityResponse +>; +export declare namespace JoinCommunityResponse { + interface Raw { + community_id: string; + base: JoinCommunityResponseBase.Raw; + address_id: number; + address: string; + wallet_id?: JoinCommunityResponseWalletId.Raw | null; + ss58Prefix?: number | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.js b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.js new file mode 100644 index 00000000000..82e67bb03cc --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponse.js @@ -0,0 +1,23 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { JoinCommunityResponseBase } from './JoinCommunityResponseBase'; +import { JoinCommunityResponseWalletId } from './JoinCommunityResponseWalletId'; +export const JoinCommunityResponse = core.serialization.object({ + communityId: core.serialization.property( + 'community_id', + core.serialization.string(), + ), + base: JoinCommunityResponseBase, + addressId: core.serialization.property( + 'address_id', + core.serialization.number(), + ), + address: core.serialization.string(), + walletId: core.serialization.property( + 'wallet_id', + JoinCommunityResponseWalletId.optional(), + ), + ss58Prefix: core.serialization.number().optional(), +}); diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.d.ts b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.d.ts new file mode 100644 index 00000000000..8859681704f --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.d.ts @@ -0,0 +1,13 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const JoinCommunityResponseBase: core.serialization.Schema< + serializers.JoinCommunityResponseBase.Raw, + CommonApi.JoinCommunityResponseBase +>; +export declare namespace JoinCommunityResponseBase { + type Raw = 'cosmos' | 'substrate' | 'ethereum' | 'near' | 'solana'; +} diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.js b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.js new file mode 100644 index 00000000000..630fe86f46a --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseBase.js @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const JoinCommunityResponseBase = core.serialization.enum_([ + 'cosmos', + 'substrate', + 'ethereum', + 'near', + 'solana', +]); diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.d.ts new file mode 100644 index 00000000000..c7df5c84762 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.d.ts @@ -0,0 +1,26 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const JoinCommunityResponseWalletId: core.serialization.Schema< + serializers.JoinCommunityResponseWalletId.Raw, + CommonApi.JoinCommunityResponseWalletId +>; +export declare namespace JoinCommunityResponseWalletId { + type Raw = + | 'magic' + | 'polkadot' + | 'metamask' + | 'walletconnect' + | 'keplr-ethereum' + | 'keplr' + | 'leap' + | 'near' + | 'terrastation' + | 'terra-walletconnect' + | 'cosm-metamask' + | 'phantom' + | 'coinbase'; +} diff --git a/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.js b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.js new file mode 100644 index 00000000000..84c03af2414 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/JoinCommunityResponseWalletId.js @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const JoinCommunityResponseWalletId = core.serialization.enum_([ + 'magic', + 'polkadot', + 'metamask', + 'walletconnect', + 'keplr-ethereum', + 'keplr', + 'leap', + 'near', + 'terrastation', + 'terra-walletconnect', + 'cosm-metamask', + 'phantom', + 'coinbase', +]); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts index a6bedb7a6aa..3eed9707a4f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommunityRequestAddressesItemRole } from './UpdateCommunityRequestAddressesItemRole'; import { UpdateCommunityRequestAddressesItemUser } from './UpdateCommunityRequestAddressesItemUser'; import { UpdateCommunityRequestAddressesItemWalletId } from './UpdateCommunityRequestAddressesItemWalletId'; - export declare const UpdateCommunityRequestAddressesItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestAddressesItem.Raw, CommonApi.UpdateCommunityRequestAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.js index 5975c236bf1..4492f447739 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestAddressesItemRole } from './UpdateCommunityRequestAddressesItemRole'; import { UpdateCommunityRequestAddressesItemUser } from './UpdateCommunityRequestAddressesItemUser'; import { UpdateCommunityRequestAddressesItemWalletId } from './UpdateCommunityRequestAddressesItemWalletId'; - export const UpdateCommunityRequestAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.d.ts index 51a49cc76ab..724dac12b60 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestAddressesItemRole: core.serialization.Schema< serializers.UpdateCommunityRequestAddressesItemRole.Raw, CommonApi.UpdateCommunityRequestAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.js index 6d601bbd42b..e421c54708f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestAddressesItemRole = core.serialization.enum_( ['admin', 'moderator', 'member'], ); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts index f18f41d4e03..e1297ab1f9f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityRequestAddressesItemUserApiKey } from './UpdateCommunity import { UpdateCommunityRequestAddressesItemUserEmailNotificationInterval } from './UpdateCommunityRequestAddressesItemUserEmailNotificationInterval'; import { UpdateCommunityRequestAddressesItemUserProfile } from './UpdateCommunityRequestAddressesItemUserProfile'; import { UpdateCommunityRequestAddressesItemUserProfileTagsItem } from './UpdateCommunityRequestAddressesItemUserProfileTagsItem'; - export declare const UpdateCommunityRequestAddressesItemUser: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestAddressesItemUser.Raw, CommonApi.UpdateCommunityRequestAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.js index c1a9a2d37c3..74f58a8dc26 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUser.js @@ -6,7 +6,6 @@ import { UpdateCommunityRequestAddressesItemUserApiKey } from './UpdateCommunity import { UpdateCommunityRequestAddressesItemUserEmailNotificationInterval } from './UpdateCommunityRequestAddressesItemUserEmailNotificationInterval'; import { UpdateCommunityRequestAddressesItemUserProfile } from './UpdateCommunityRequestAddressesItemUserProfile'; import { UpdateCommunityRequestAddressesItemUserProfileTagsItem } from './UpdateCommunityRequestAddressesItemUserProfileTagsItem'; - export const UpdateCommunityRequestAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..40d868505d7 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommunityRequestAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommunityRequestAddressesItemUserApiKey.Raw, + CommonApi.UpdateCommunityRequestAddressesItemUserApiKey +>; +export declare namespace UpdateCommunityRequestAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js new file mode 100644 index 00000000000..3fc9fef72b2 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommunityRequestAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.d.ts index 4b54bcff155..821d4310df0 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.Raw, CommonApi.UpdateCommunityRequestAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.js index 75109e74119..29e30574fec 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts index e5aafa54e01..a33812b08ef 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestAddressesItemUserProfileBackgroundImage } from './UpdateCommunityRequestAddressesItemUserProfileBackgroundImage'; - export declare const UpdateCommunityRequestAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestAddressesItemUserProfile.Raw, CommonApi.UpdateCommunityRequestAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.js index 63c3a2820ab..278b7a82483 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestAddressesItemUserProfileBackgroundImage } from './UpdateCommunityRequestAddressesItemUserProfileBackgroundImage'; - export const UpdateCommunityRequestAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.d.ts index f66c25df53b..cc84e86b324 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.Raw, CommonApi.UpdateCommunityRequestAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.js index 4a97d639ad4..a0e4f5045cc 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.d.ts index cd8d0703cb0..cd88d0641d5 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestAddressesItemUserProfileTagsItem.Raw, CommonApi.UpdateCommunityRequestAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.js index 759a616ec0d..f1b4d387456 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.d.ts index be31a8010bd..08aac9882d3 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestAddressesItemWalletId: core.serialization.Schema< serializers.UpdateCommunityRequestAddressesItemWalletId.Raw, CommonApi.UpdateCommunityRequestAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.js index 6f9493a4968..e2ee11c0b6f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.d.ts index d9b14d903a7..1dcf6292d9c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestBase: core.serialization.Schema< serializers.UpdateCommunityRequestBase.Raw, CommonApi.UpdateCommunityRequestBase diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.js index 0633151c1d3..c9450e725bb 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.d.ts index 3f21ad689fd..957f13ee80a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityRequestChainNodeBalanceType } from './UpdateCommunityReq import { UpdateCommunityRequestChainNodeContractsItem } from './UpdateCommunityRequestChainNodeContractsItem'; import { UpdateCommunityRequestChainNodeCosmosGovVersion } from './UpdateCommunityRequestChainNodeCosmosGovVersion'; import { UpdateCommunityRequestChainNodeHealth } from './UpdateCommunityRequestChainNodeHealth'; - export declare const UpdateCommunityRequestChainNode: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestChainNode.Raw, CommonApi.UpdateCommunityRequestChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.js index 30fd0ab0fd5..9a2ae3542ed 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNode.js @@ -6,7 +6,6 @@ import { UpdateCommunityRequestChainNodeBalanceType } from './UpdateCommunityReq import { UpdateCommunityRequestChainNodeContractsItem } from './UpdateCommunityRequestChainNodeContractsItem'; import { UpdateCommunityRequestChainNodeCosmosGovVersion } from './UpdateCommunityRequestChainNodeCosmosGovVersion'; import { UpdateCommunityRequestChainNodeHealth } from './UpdateCommunityRequestChainNodeHealth'; - export const UpdateCommunityRequestChainNode = core.serialization.object({ id: core.serialization.number().optional(), url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.d.ts index 46333684d5e..1fbdb2df332 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestChainNodeBalanceType: core.serialization.Schema< serializers.UpdateCommunityRequestChainNodeBalanceType.Raw, CommonApi.UpdateCommunityRequestChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.js index 9d583c4d1b0..9ac95cf0adb 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestChainNodeBalanceType = core.serialization.enum_([ 'terra', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.d.ts index e89bfbe8436..aa376dbfafd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestChainNodeContractsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestChainNodeContractsItem.Raw, CommonApi.UpdateCommunityRequestChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.js index a3be24ea88d..15380ab9f88 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.d.ts index 4027e1c4b5e..8dae7d08f72 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestChainNodeCosmosGovVersion: core.serialization.Schema< serializers.UpdateCommunityRequestChainNodeCosmosGovVersion.Raw, CommonApi.UpdateCommunityRequestChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.js index b93b99a618f..6319c5a9c40 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.d.ts index 495b8b44ed6..df392297e37 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestChainNodeHealth: core.serialization.Schema< serializers.UpdateCommunityRequestChainNodeHealth.Raw, CommonApi.UpdateCommunityRequestChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.js index 0ba3c323d69..ed9fd9c2150 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestChainNodeHealth.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestChainNodeHealth = core.serialization.enum_([ 'failed', 'healthy', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts index 047f84a82a0..a73904770d1 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem } from './UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem'; - export declare const UpdateCommunityRequestCommunityStakesItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestCommunityStakesItem.Raw, CommonApi.UpdateCommunityRequestCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.js index 559ca8b0177..9f1e01f9966 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem } from './UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem'; - export const UpdateCommunityRequestCommunityStakesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts index b07d4b0cdf4..920d76783e0 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection } from './UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.js index 3ef874cbd52..9138f9be65e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection } from './UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const UpdateCommunityRequestCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index 19b1c432895..fa61ce63938 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.js index c4a30aa33c7..3741bf3b559 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts index dbcbb895832..6679a02fce4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestCommunityTagsItemTag } from './UpdateCommunityRequestCommunityTagsItemTag'; - export declare const UpdateCommunityRequestCommunityTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestCommunityTagsItem.Raw, CommonApi.UpdateCommunityRequestCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.js index bd5c82f3dee..ba1e235957b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestCommunityTagsItemTag } from './UpdateCommunityRequestCommunityTagsItemTag'; - export const UpdateCommunityRequestCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.d.ts index 4e5fc14900b..6e94fd42771 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestCommunityTagsItemTag.Raw, CommonApi.UpdateCommunityRequestCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.js index 6c4cb031dc3..189e1fd70a8 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts index 67dcef0cf95..cbd5fe234c3 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestContestManagersItemContestsItem } from './UpdateCommunityRequestContestManagersItemContestsItem'; import { UpdateCommunityRequestContestManagersItemTopicsItem } from './UpdateCommunityRequestContestManagersItemTopicsItem'; - export declare const UpdateCommunityRequestContestManagersItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.js index d1868d89118..5e471a7cc93 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestContestManagersItemContestsItem } from './UpdateCommunityRequestContestManagersItemContestsItem'; import { UpdateCommunityRequestContestManagersItemTopicsItem } from './UpdateCommunityRequestContestManagersItemTopicsItem'; - export const UpdateCommunityRequestContestManagersItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts index 978cc6536d8..8346756feb3 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestContestManagersItemContestsItemActionsItem } from './UpdateCommunityRequestContestManagersItemContestsItemActionsItem'; import { UpdateCommunityRequestContestManagersItemContestsItemScoreItem } from './UpdateCommunityRequestContestManagersItemContestsItemScoreItem'; - export declare const UpdateCommunityRequestContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItemContestsItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.js index c7a5989012a..212d0e10c99 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestContestManagersItemContestsItemActionsItem } from './UpdateCommunityRequestContestManagersItemContestsItemActionsItem'; import { UpdateCommunityRequestContestManagersItemContestsItemScoreItem } from './UpdateCommunityRequestContestManagersItemContestsItemScoreItem'; - export const UpdateCommunityRequestContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts index 289a7d8234a..53e90106865 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction } from './UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction'; - export declare const UpdateCommunityRequestContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItemContestsItemActionsItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.js index 2d52b2b75dd..a80ceaa7b2e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction } from './UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction'; - export const UpdateCommunityRequestContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.d.ts index cc912ff8a98..9c82306ca49 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.js index af1e14256b6..b69db47c3ef 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.d.ts index c595cd05d36..b31764607b2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItemContestsItemScoreItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.js index 8f4d6addff9..c963dd26d4d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts index 650da038faa..bf27fa7bccb 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem } from './UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem'; import { UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting } from './UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting'; - export declare const UpdateCommunityRequestContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItemTopicsItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.js index 67ea5134dc3..01e748a58ac 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem } from './UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem'; import { UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting } from './UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting'; - export const UpdateCommunityRequestContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.d.ts index 75ef4f12a00..5aa365c8107 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.js index dcd08de92a5..82f95ad118a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.d.ts index aa3eef61a87..fdba468f6de 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.js index 9c079e36a96..1707de2a41c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.d.ts index ba7a6796199..1e88de5078a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestDefaultPage: core.serialization.Schema< serializers.UpdateCommunityRequestDefaultPage.Raw, CommonApi.UpdateCommunityRequestDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.js index f00ebea2e18..27114a54e49 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', 'default_summary_view', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts index e8a291ff030..a098ef99808 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemMetadata } from './UpdateCommunityRequestGroupsItemMetadata'; import { UpdateCommunityRequestGroupsItemRequirementsItem } from './UpdateCommunityRequestGroupsItemRequirementsItem'; - export declare const UpdateCommunityRequestGroupsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItem.Raw, CommonApi.UpdateCommunityRequestGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.js index 7cfc610b53f..37d0dc15419 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemMetadata } from './UpdateCommunityRequestGroupsItemMetadata'; import { UpdateCommunityRequestGroupsItemRequirementsItem } from './UpdateCommunityRequestGroupsItemRequirementsItem'; - export const UpdateCommunityRequestGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.d.ts index 65131afed86..9fcdd8363b6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemMetadata: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemMetadata.Raw, CommonApi.UpdateCommunityRequestGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.js index 8372508d0cc..6250ff7c696 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts index 9946d68bdbc..c59960e9a77 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemAllow } from './UpdateCommunityRequestGroupsItemRequirementsItemAllow'; import { UpdateCommunityRequestGroupsItemRequirementsItemThreshold } from './UpdateCommunityRequestGroupsItemRequirementsItemThreshold'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItem: core.serialization.Schema< serializers.UpdateCommunityRequestGroupsItemRequirementsItem.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace UpdateCommunityRequestGroupsItemRequirementsItem { type Raw = | UpdateCommunityRequestGroupsItemRequirementsItem.Threshold | UpdateCommunityRequestGroupsItemRequirementsItem.Allow; - interface Threshold extends UpdateCommunityRequestGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends UpdateCommunityRequestGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.js index b8f28f73d10..a5f2f555509 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemAllow } from './UpdateCommunityRequestGroupsItemRequirementsItemAllow'; import { UpdateCommunityRequestGroupsItemRequirementsItemThreshold } from './UpdateCommunityRequestGroupsItemRequirementsItemThreshold'; - export const UpdateCommunityRequestGroupsItemRequirementsItem = core.serialization .union('rule', { diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts index ce7a4dde165..a34ff5094d2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemAllowData } from './UpdateCommunityRequestGroupsItemRequirementsItemAllowData'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemAllow.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.js index 57488c7ba91..9d900dfd842 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemAllowData } from './UpdateCommunityRequestGroupsItemRequirementsItemAllowData'; - export const UpdateCommunityRequestGroupsItemRequirementsItemAllow = core.serialization.object({ data: UpdateCommunityRequestGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.d.ts index b7a3fba3a61..d1139c398f4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemAllowData.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.js index 2d9c6b28f4c..4a0dbc68f6c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts index bea61db6b88..672521dbc70 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdData } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdData'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThreshold.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.js index 6e5042803cb..a9cfbfbef1c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdData } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdData'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThreshold = core.serialization.object({ data: UpdateCommunityRequestGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts index 04c63992f3e..b2b6fe68beb 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.js index 542ea06e8ed..4d0b18936a2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts index 382e54a81cf..48f706ea764 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.js index a9b49fc7343..536bc31049d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index 8d6bc8df2bf..341ae43f005 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.js index 8b4aa3f866e..68e40d49133 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index fc6f71df6ac..05e5b17a07f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.js index 483753d8e4f..c17ec232232 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 68468d1deb1..552af760461 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index da6af8c361a..d50fbfac93a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index 00ecf1655b2..52929ba1343 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.js index 92f46853ce9..7c5df21c2fd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 325f22e8a89..e62f85423e6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index 8fbb83a2705..488c54d647b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index a056c23c3e7..5cb26bbad69 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index f14a7e9ccc7..37325768f7d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.d.ts index 0799d7e510a..74c8dcfbbc4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestHasHomepage: core.serialization.Schema< serializers.UpdateCommunityRequestHasHomepage.Raw, CommonApi.UpdateCommunityRequestHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.js index 69deef27070..b65844743aa 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestHasHomepage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestHasHomepage = core.serialization.enum_([ 'true', 'false', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.d.ts index 818dd1531b7..21d891eaba7 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestSnapshot: core.serialization.Schema< serializers.UpdateCommunityRequestSnapshot.Raw, CommonApi.UpdateCommunityRequestSnapshot diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.js index cd7f8900158..3aa3f0c8c98 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSnapshot.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestSnapshot = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.d.ts index 45f2bf415c6..7e389b28dba 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestSocialLinksItem: core.serialization.Schema< serializers.UpdateCommunityRequestSocialLinksItem.Raw, CommonApi.UpdateCommunityRequestSocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.js index ab0947ecc5b..1a5e8bd747a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestSocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestSocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.d.ts index 2fce0ebce25..42d2cb8e8c6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestTermsZero } from './UpdateCommunityRequestTermsZero'; - export declare const UpdateCommunityRequestTerms: core.serialization.Schema< serializers.UpdateCommunityRequestTerms.Raw, CommonApi.UpdateCommunityRequestTerms diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.js index 7e1cb32880f..8ee4478e9f4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityRequestTermsZero } from './UpdateCommunityRequestTermsZero'; - export const UpdateCommunityRequestTerms = core.serialization.undiscriminatedUnion([ UpdateCommunityRequestTermsZero, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.d.ts index 98f9f4ce6cd..597669ad4a1 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestTermsZero: core.serialization.Schema< serializers.UpdateCommunityRequestTermsZero.Raw, CommonApi.UpdateCommunityRequestTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.js index 34deb31bca9..9e0f5c91374 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts index 722817bc294..e6a73b2b8c5 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityRequestTopicsItemContestTopicsItem } from './UpdateCommunityRequestTopicsItemContestTopicsItem'; import { UpdateCommunityRequestTopicsItemWeightedVoting } from './UpdateCommunityRequestTopicsItemWeightedVoting'; - export declare const UpdateCommunityRequestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestTopicsItem.Raw, CommonApi.UpdateCommunityRequestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.js index 6a928e520c8..e9e89b4c306 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityRequestTopicsItemContestTopicsItem } from './UpdateCommunityRequestTopicsItemContestTopicsItem'; import { UpdateCommunityRequestTopicsItemWeightedVoting } from './UpdateCommunityRequestTopicsItemWeightedVoting'; - export const UpdateCommunityRequestTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.d.ts index 0a76feefe8c..34ede2ecf2f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityRequestTopicsItemContestTopicsItem.Raw, CommonApi.UpdateCommunityRequestTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.js index bb6150e5200..b7665a4d352 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.d.ts index e8c30205aa4..d6fdbf3620f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestTopicsItemWeightedVoting: core.serialization.Schema< serializers.UpdateCommunityRequestTopicsItemWeightedVoting.Raw, CommonApi.UpdateCommunityRequestTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.js index f9ef8a90403..82059480993 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.d.ts index 20711f6d88f..3be1f80afa2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityRequestType: core.serialization.Schema< serializers.UpdateCommunityRequestType.Raw, CommonApi.UpdateCommunityRequestType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.js index 202cdbe60eb..2aadd73249f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityRequestType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityRequestType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.d.ts index bb2cc1f1a51..f2d8e133d6d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.d.ts @@ -17,7 +17,6 @@ import { UpdateCommunityResponseSocialLinksItem } from './UpdateCommunityRespons import { UpdateCommunityResponseTerms } from './UpdateCommunityResponseTerms'; import { UpdateCommunityResponseTopicsItem } from './UpdateCommunityResponseTopicsItem'; import { UpdateCommunityResponseType } from './UpdateCommunityResponseType'; - export declare const UpdateCommunityResponse: core.serialization.ObjectSchema< serializers.UpdateCommunityResponse.Raw, CommonApi.UpdateCommunityResponse diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.js index b3925521745..05d30cb7822 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponse.js @@ -15,7 +15,6 @@ import { UpdateCommunityResponseSocialLinksItem } from './UpdateCommunityRespons import { UpdateCommunityResponseTerms } from './UpdateCommunityResponseTerms'; import { UpdateCommunityResponseTopicsItem } from './UpdateCommunityResponseTopicsItem'; import { UpdateCommunityResponseType } from './UpdateCommunityResponseType'; - export const UpdateCommunityResponse = core.serialization.object({ id: core.serialization.string(), name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts index 780f9c41be6..4acf761d053 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateCommunityResponseAddressesItemRole } from './UpdateCommunityResponseAddressesItemRole'; import { UpdateCommunityResponseAddressesItemUser } from './UpdateCommunityResponseAddressesItemUser'; import { UpdateCommunityResponseAddressesItemWalletId } from './UpdateCommunityResponseAddressesItemWalletId'; - export declare const UpdateCommunityResponseAddressesItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseAddressesItem.Raw, CommonApi.UpdateCommunityResponseAddressesItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.js index 5897674f809..bf0d9e351d6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseAddressesItemRole } from './UpdateCommunityResponseAddressesItemRole'; import { UpdateCommunityResponseAddressesItemUser } from './UpdateCommunityResponseAddressesItemUser'; import { UpdateCommunityResponseAddressesItemWalletId } from './UpdateCommunityResponseAddressesItemWalletId'; - export const UpdateCommunityResponseAddressesItem = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.d.ts index cde463a95f0..33b47baef7f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseAddressesItemRole: core.serialization.Schema< serializers.UpdateCommunityResponseAddressesItemRole.Raw, CommonApi.UpdateCommunityResponseAddressesItemRole diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.js index 1d17165a2b4..e6ce76fa07a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseAddressesItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts index 09292463b09..1504343aaf9 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityResponseAddressesItemUserApiKey } from './UpdateCommunit import { UpdateCommunityResponseAddressesItemUserEmailNotificationInterval } from './UpdateCommunityResponseAddressesItemUserEmailNotificationInterval'; import { UpdateCommunityResponseAddressesItemUserProfile } from './UpdateCommunityResponseAddressesItemUserProfile'; import { UpdateCommunityResponseAddressesItemUserProfileTagsItem } from './UpdateCommunityResponseAddressesItemUserProfileTagsItem'; - export declare const UpdateCommunityResponseAddressesItemUser: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseAddressesItemUser.Raw, CommonApi.UpdateCommunityResponseAddressesItemUser diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.js index 9bd74ec3e9b..bff66e9a122 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUser.js @@ -6,7 +6,6 @@ import { UpdateCommunityResponseAddressesItemUserApiKey } from './UpdateCommunit import { UpdateCommunityResponseAddressesItemUserEmailNotificationInterval } from './UpdateCommunityResponseAddressesItemUserEmailNotificationInterval'; import { UpdateCommunityResponseAddressesItemUserProfile } from './UpdateCommunityResponseAddressesItemUserProfile'; import { UpdateCommunityResponseAddressesItemUserProfileTagsItem } from './UpdateCommunityResponseAddressesItemUserProfileTagsItem'; - export const UpdateCommunityResponseAddressesItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts new file mode 100644 index 00000000000..25006dd664d --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateCommunityResponseAddressesItemUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateCommunityResponseAddressesItemUserApiKey.Raw, + CommonApi.UpdateCommunityResponseAddressesItemUserApiKey +>; +export declare namespace UpdateCommunityResponseAddressesItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js new file mode 100644 index 00000000000..decea2bdf37 --- /dev/null +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateCommunityResponseAddressesItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.d.ts index 0bc6500b8a4..97bcd9d760e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseAddressesItemUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.Raw, CommonApi.UpdateCommunityResponseAddressesItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.js index 145ba4cd750..1e97b0a7592 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseAddressesItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts index 19a1b99d5a9..b1768d48c89 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseAddressesItemUserProfileBackgroundImage } from './UpdateCommunityResponseAddressesItemUserProfileBackgroundImage'; - export declare const UpdateCommunityResponseAddressesItemUserProfile: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseAddressesItemUserProfile.Raw, CommonApi.UpdateCommunityResponseAddressesItemUserProfile diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.js index 521dc56a82c..659f152d7cc 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseAddressesItemUserProfileBackgroundImage } from './UpdateCommunityResponseAddressesItemUserProfileBackgroundImage'; - export const UpdateCommunityResponseAddressesItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.d.ts index f466fe079fb..4e1255f4858 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseAddressesItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.Raw, CommonApi.UpdateCommunityResponseAddressesItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.js index 2009293706a..5540b6af545 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseAddressesItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.d.ts index b4eed2eb1dd..234d15df860 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseAddressesItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseAddressesItemUserProfileTagsItem.Raw, CommonApi.UpdateCommunityResponseAddressesItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.js index e3c8e4cf242..fd77d158b28 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseAddressesItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.d.ts index 552ed5046a1..146e5f7b1e6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseAddressesItemWalletId: core.serialization.Schema< serializers.UpdateCommunityResponseAddressesItemWalletId.Raw, CommonApi.UpdateCommunityResponseAddressesItemWalletId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.js index 3e6561b3d0d..39089836704 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseAddressesItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseAddressesItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.d.ts index 21b2a78b285..c9fbcf33c8e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseBase: core.serialization.Schema< serializers.UpdateCommunityResponseBase.Raw, CommonApi.UpdateCommunityResponseBase diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.js index f773669e51d..cff945627db 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseBase.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseBase = core.serialization.enum_([ 'cosmos', 'substrate', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.d.ts index 57ef250f43d..1d12ad4b6bd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityResponseChainNodeBalanceType } from './UpdateCommunityRe import { UpdateCommunityResponseChainNodeContractsItem } from './UpdateCommunityResponseChainNodeContractsItem'; import { UpdateCommunityResponseChainNodeCosmosGovVersion } from './UpdateCommunityResponseChainNodeCosmosGovVersion'; import { UpdateCommunityResponseChainNodeHealth } from './UpdateCommunityResponseChainNodeHealth'; - export declare const UpdateCommunityResponseChainNode: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseChainNode.Raw, CommonApi.UpdateCommunityResponseChainNode diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.js index 75193586f1e..51f874c98fc 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNode.js @@ -6,7 +6,6 @@ import { UpdateCommunityResponseChainNodeBalanceType } from './UpdateCommunityRe import { UpdateCommunityResponseChainNodeContractsItem } from './UpdateCommunityResponseChainNodeContractsItem'; import { UpdateCommunityResponseChainNodeCosmosGovVersion } from './UpdateCommunityResponseChainNodeCosmosGovVersion'; import { UpdateCommunityResponseChainNodeHealth } from './UpdateCommunityResponseChainNodeHealth'; - export const UpdateCommunityResponseChainNode = core.serialization.object({ id: core.serialization.number().optional(), url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.d.ts index b8d27048aee..d392cab1b2f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseChainNodeBalanceType: core.serialization.Schema< serializers.UpdateCommunityResponseChainNodeBalanceType.Raw, CommonApi.UpdateCommunityResponseChainNodeBalanceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.js index 255182251d0..cd5747c9aba 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeBalanceType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseChainNodeBalanceType = core.serialization.enum_([ 'terra', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.d.ts index f5301980663..4196f14c714 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseChainNodeContractsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseChainNodeContractsItem.Raw, CommonApi.UpdateCommunityResponseChainNodeContractsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.js index 8f77ab208c1..2e175b3c75c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeContractsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseChainNodeContractsItem = core.serialization.object({ id: core.serialization.number(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.d.ts index 28480b18978..da367642669 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseChainNodeCosmosGovVersion: core.serialization.Schema< serializers.UpdateCommunityResponseChainNodeCosmosGovVersion.Raw, CommonApi.UpdateCommunityResponseChainNodeCosmosGovVersion diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.js index 6a686bdd631..dfd7a58a9c3 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeCosmosGovVersion.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseChainNodeCosmosGovVersion = core.serialization.enum_([ 'v1', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.d.ts index eb130065e5d..da98f92f450 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseChainNodeHealth: core.serialization.Schema< serializers.UpdateCommunityResponseChainNodeHealth.Raw, CommonApi.UpdateCommunityResponseChainNodeHealth diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.js index 35492be3f82..8d2492c6fef 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseChainNodeHealth.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseChainNodeHealth = core.serialization.enum_([ 'failed', 'healthy', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts index ad72b0099d5..3f171c98784 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem } from './UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem'; - export declare const UpdateCommunityResponseCommunityStakesItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseCommunityStakesItem.Raw, CommonApi.UpdateCommunityResponseCommunityStakesItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.js index c5885f862d9..0867c74203e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem } from './UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem'; - export const UpdateCommunityResponseCommunityStakesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts index a996e9d5e0c..9e9ae9c5757 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection } from './UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection'; - export declare const UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.Raw, CommonApi.UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.js index 67b7be8bd7c..4d9928541cd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection } from './UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection'; - export const UpdateCommunityResponseCommunityStakesItemStakeTransactionsItem = core.serialization.object({ transactionHash: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts index ba8d2dfdaf5..5d100cb5da6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection: core.serialization.Schema< serializers.UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.Raw, CommonApi.UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js index c6bd5c4b4e5..e5a5d4c6ab9 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseCommunityStakesItemStakeTransactionsItemStakeDirection = core.serialization.enum_(['buy', 'sell']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts index 9c8c931c576..07878d56484 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseCommunityTagsItemTag } from './UpdateCommunityResponseCommunityTagsItemTag'; - export declare const UpdateCommunityResponseCommunityTagsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseCommunityTagsItem.Raw, CommonApi.UpdateCommunityResponseCommunityTagsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.js index 0540a142760..c495fad8345 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseCommunityTagsItemTag } from './UpdateCommunityResponseCommunityTagsItemTag'; - export const UpdateCommunityResponseCommunityTagsItem = core.serialization.object({ communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.d.ts index 8e7c2525981..ed12d91aa74 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseCommunityTagsItemTag: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseCommunityTagsItemTag.Raw, CommonApi.UpdateCommunityResponseCommunityTagsItemTag diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.js index ea91e0eeb8e..a7a3b60838d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseCommunityTagsItemTag.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseCommunityTagsItemTag = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts index 726d491cd4e..6908b7092c6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseContestManagersItemContestsItem } from './UpdateCommunityResponseContestManagersItemContestsItem'; import { UpdateCommunityResponseContestManagersItemTopicsItem } from './UpdateCommunityResponseContestManagersItemTopicsItem'; - export declare const UpdateCommunityResponseContestManagersItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.js index 0fd28a31f70..deb63828755 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseContestManagersItemContestsItem } from './UpdateCommunityResponseContestManagersItemContestsItem'; import { UpdateCommunityResponseContestManagersItemTopicsItem } from './UpdateCommunityResponseContestManagersItemTopicsItem'; - export const UpdateCommunityResponseContestManagersItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts index 82c7a5ff625..e0e803f946f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseContestManagersItemContestsItemActionsItem } from './UpdateCommunityResponseContestManagersItemContestsItemActionsItem'; import { UpdateCommunityResponseContestManagersItemContestsItemScoreItem } from './UpdateCommunityResponseContestManagersItemContestsItemScoreItem'; - export declare const UpdateCommunityResponseContestManagersItemContestsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItemContestsItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItemContestsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.js index d14ebaf300f..2268468f3d7 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseContestManagersItemContestsItemActionsItem } from './UpdateCommunityResponseContestManagersItemContestsItemActionsItem'; import { UpdateCommunityResponseContestManagersItemContestsItemScoreItem } from './UpdateCommunityResponseContestManagersItemContestsItemScoreItem'; - export const UpdateCommunityResponseContestManagersItemContestsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts index 558f9c96401..4c0658a00e8 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction } from './UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction'; - export declare const UpdateCommunityResponseContestManagersItemContestsItemActionsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItemContestsItemActionsItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItemContestsItemActionsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.js index c2b87f84b1b..b853d305912 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction } from './UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction'; - export const UpdateCommunityResponseContestManagersItemContestsItemActionsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.d.ts index 132e49a9a04..644e770a384 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction: core.serialization.Schema< serializers.UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.Raw, CommonApi.UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.js index 87aefc3a13d..334bc359530 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseContestManagersItemContestsItemActionsItemAction = core.serialization.enum_(['added', 'upvoted']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.d.ts index 5f32fa4d0e9..0228502175a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseContestManagersItemContestsItemScoreItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItemContestsItemScoreItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItemContestsItemScoreItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.js index ff4184fea11..c22cbcac989 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemContestsItemScoreItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseContestManagersItemContestsItemScoreItem = core.serialization.object({ creatorAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts index ef88431d683..d6824f7a6cc 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem } from './UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem'; import { UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting } from './UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting'; - export declare const UpdateCommunityResponseContestManagersItemTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItemTopicsItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItemTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.js index f6f32d340ba..ac550f4b7c5 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem } from './UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem'; import { UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting } from './UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting'; - export const UpdateCommunityResponseContestManagersItemTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.d.ts index bf4ee4d8342..9a7c01b76dd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.Raw, CommonApi.UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.js index cbf60ceb3ec..e3132a4e0ed 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseContestManagersItemTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.d.ts index e0c9a92ef92..d5e9ddcd033 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting: core.serialization.Schema< serializers.UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.Raw, CommonApi.UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.js index 747e3a8d6eb..b704d878542 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseContestManagersItemTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.d.ts index 35195615ea3..dea4b7e1231 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseDefaultPage: core.serialization.Schema< serializers.UpdateCommunityResponseDefaultPage.Raw, CommonApi.UpdateCommunityResponseDefaultPage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.js index 4e97a112da3..a131980216e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseDefaultPage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseDefaultPage = core.serialization.enum_([ 'default_all_discussions_view', 'default_summary_view', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts index 536e458d558..41abe311f50 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemMetadata } from './UpdateCommunityResponseGroupsItemMetadata'; import { UpdateCommunityResponseGroupsItemRequirementsItem } from './UpdateCommunityResponseGroupsItemRequirementsItem'; - export declare const UpdateCommunityResponseGroupsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItem.Raw, CommonApi.UpdateCommunityResponseGroupsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.js index a188007e522..c669134f581 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemMetadata } from './UpdateCommunityResponseGroupsItemMetadata'; import { UpdateCommunityResponseGroupsItemRequirementsItem } from './UpdateCommunityResponseGroupsItemRequirementsItem'; - export const UpdateCommunityResponseGroupsItem = core.serialization.object({ id: core.serialization.number().optional(), communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.d.ts index 8eb22824800..7cd42b28e38 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemMetadata: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemMetadata.Raw, CommonApi.UpdateCommunityResponseGroupsItemMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.js index 22ed075e88e..10928d2a9b2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemMetadata = core.serialization.object({ name: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts index a76dd350dd8..55d4c322ff4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemAllow } from './UpdateCommunityResponseGroupsItemRequirementsItemAllow'; import { UpdateCommunityResponseGroupsItemRequirementsItemThreshold } from './UpdateCommunityResponseGroupsItemRequirementsItemThreshold'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItem: core.serialization.Schema< serializers.UpdateCommunityResponseGroupsItemRequirementsItem.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItem @@ -15,12 +14,10 @@ export declare namespace UpdateCommunityResponseGroupsItemRequirementsItem { type Raw = | UpdateCommunityResponseGroupsItemRequirementsItem.Threshold | UpdateCommunityResponseGroupsItemRequirementsItem.Allow; - interface Threshold extends UpdateCommunityResponseGroupsItemRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends UpdateCommunityResponseGroupsItemRequirementsItemAllow.Raw { rule: 'allow'; diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.js index 08da3eb1815..517d22706df 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemAllow } from './UpdateCommunityResponseGroupsItemRequirementsItemAllow'; import { UpdateCommunityResponseGroupsItemRequirementsItemThreshold } from './UpdateCommunityResponseGroupsItemRequirementsItemThreshold'; - export const UpdateCommunityResponseGroupsItemRequirementsItem = core.serialization .union('rule', { diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts index 6b14d9f3fae..24972b4f949 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemAllowData } from './UpdateCommunityResponseGroupsItemRequirementsItemAllowData'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemAllow: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemAllow.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.js index 000cd75cede..bff4f8bee63 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemAllowData } from './UpdateCommunityResponseGroupsItemRequirementsItemAllowData'; - export const UpdateCommunityResponseGroupsItemRequirementsItemAllow = core.serialization.object({ data: UpdateCommunityResponseGroupsItemRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.d.ts index 8915ba8eaf4..0d91fbca3f4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemAllowData.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.js index 56a94bb826c..719db0efcaf 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts index ea1eee4f411..1e533aaaf98 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdData } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdData'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThreshold.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.js index a856d1ec63a..dffd335a350 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdData } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdData'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThreshold = core.serialization.object({ data: UpdateCommunityResponseGroupsItemRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts index a46a6813f5f..4d9036b3f9f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.js index dc3885e0b72..3aee89634cb 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts index fd55fd8d4ea..7f62ea72d31 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.js index 50ecfaf1c48..79587e12805 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts index 973245f5082..f9c8ce85f41 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.js index 1328d90ea26..418f0d38c29 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts index d97d4a80a7b..bf92dc05d5f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.js index a7c12554756..c6d2fcf4825 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 7fa4fcbe0a3..1327b539e61 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js index 8a58535ff25..215e50788bd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts index e2751e17bed..7de63e94f9f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js index 24a2c462a2d..696c1c77b32 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 764b8233df4..4b03b781963 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js index 80e7548009f..c260ef07e6e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts index ba1ee0dfc2f..07b85c5f566 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js index 3fcdd969675..890cdd8676f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseGroupsItemRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.d.ts index 5427ae6ee82..8b470bf1eb0 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseHasHomepage: core.serialization.Schema< serializers.UpdateCommunityResponseHasHomepage.Raw, CommonApi.UpdateCommunityResponseHasHomepage diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.js index 26b7bf1e947..4752d413172 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseHasHomepage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseHasHomepage = core.serialization.enum_([ 'true', 'false', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.d.ts index 7f857516e77..a113d06e169 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseSocialLinksItem: core.serialization.Schema< serializers.UpdateCommunityResponseSocialLinksItem.Raw, CommonApi.UpdateCommunityResponseSocialLinksItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.js index 860ac284831..0513900759d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseSocialLinksItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseSocialLinksItem = core.serialization.undiscriminatedUnion([ core.serialization.unknown(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.d.ts index bc99ddc4f41..243a915b84d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseTermsZero } from './UpdateCommunityResponseTermsZero'; - export declare const UpdateCommunityResponseTerms: core.serialization.Schema< serializers.UpdateCommunityResponseTerms.Raw, CommonApi.UpdateCommunityResponseTerms diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.js index d855eeac049..a29b9d04364 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTerms.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateCommunityResponseTermsZero } from './UpdateCommunityResponseTermsZero'; - export const UpdateCommunityResponseTerms = core.serialization.undiscriminatedUnion([ UpdateCommunityResponseTermsZero, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.d.ts index 2fff588677c..b91e9c046e9 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseTermsZero: core.serialization.Schema< serializers.UpdateCommunityResponseTermsZero.Raw, CommonApi.UpdateCommunityResponseTermsZero diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.js index 545e112c962..3faf64dd48e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTermsZero.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseTermsZero = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts index 7eb77f884b5..be452b91d85 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateCommunityResponseTopicsItemContestTopicsItem } from './UpdateCommunityResponseTopicsItemContestTopicsItem'; import { UpdateCommunityResponseTopicsItemWeightedVoting } from './UpdateCommunityResponseTopicsItemWeightedVoting'; - export declare const UpdateCommunityResponseTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseTopicsItem.Raw, CommonApi.UpdateCommunityResponseTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.js index 2ebe61a3a9a..a662a65205d 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateCommunityResponseTopicsItemContestTopicsItem } from './UpdateCommunityResponseTopicsItemContestTopicsItem'; import { UpdateCommunityResponseTopicsItemWeightedVoting } from './UpdateCommunityResponseTopicsItemWeightedVoting'; - export const UpdateCommunityResponseTopicsItem = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.d.ts index 4cdfabc1260..11cfde5536f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseTopicsItemContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateCommunityResponseTopicsItemContestTopicsItem.Raw, CommonApi.UpdateCommunityResponseTopicsItemContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.js index 4c850f72aab..f2bbec53778 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseTopicsItemContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.d.ts index 58cd382684f..7fd757bc1bf 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseTopicsItemWeightedVoting: core.serialization.Schema< serializers.UpdateCommunityResponseTopicsItemWeightedVoting.Raw, CommonApi.UpdateCommunityResponseTopicsItemWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.js index 4e06e134361..ffc1b393315 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseTopicsItemWeightedVoting.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseTopicsItemWeightedVoting = core.serialization.enum_(['stake', 'erc20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.d.ts index 7c207e06be6..0ddf180c57a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateCommunityResponseType: core.serialization.Schema< serializers.UpdateCommunityResponseType.Raw, CommonApi.UpdateCommunityResponseType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.js b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.js index e4742cfbee5..9d74f7b5a0b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateCommunityResponseType.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateCommunityResponseType = core.serialization.enum_([ 'chain', 'dao', diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.d.ts index dd6c660084c..73514249545 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestMetadata: core.serialization.ObjectSchema< serializers.UpdateGroupRequestMetadata.Raw, CommonApi.UpdateGroupRequestMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.js index 3be1e052cfb..b36b5a53a3b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestMetadata = core.serialization.object({ name: core.serialization.string(), description: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts index 9d449e7a600..9e97d08a716 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemAllow } from './UpdateGroupRequestRequirementsItemAllow'; import { UpdateGroupRequestRequirementsItemThreshold } from './UpdateGroupRequestRequirementsItemThreshold'; - export declare const UpdateGroupRequestRequirementsItem: core.serialization.Schema< serializers.UpdateGroupRequestRequirementsItem.Raw, CommonApi.UpdateGroupRequestRequirementsItem @@ -15,11 +14,9 @@ export declare namespace UpdateGroupRequestRequirementsItem { type Raw = | UpdateGroupRequestRequirementsItem.Threshold | UpdateGroupRequestRequirementsItem.Allow; - interface Threshold extends UpdateGroupRequestRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends UpdateGroupRequestRequirementsItemAllow.Raw { rule: 'allow'; } diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.js index 02320d74891..fe8437220e7 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemAllow } from './UpdateGroupRequestRequirementsItemAllow'; import { UpdateGroupRequestRequirementsItemThreshold } from './UpdateGroupRequestRequirementsItemThreshold'; - export const UpdateGroupRequestRequirementsItem = core.serialization .union('rule', { threshold: UpdateGroupRequestRequirementsItemThreshold, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts index e8e9186370a..b5a657fe84c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemAllowData } from './UpdateGroupRequestRequirementsItemAllowData'; - export declare const UpdateGroupRequestRequirementsItemAllow: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemAllow.Raw, CommonApi.UpdateGroupRequestRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.js index 3a27134032a..c1223b3fd19 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemAllowData } from './UpdateGroupRequestRequirementsItemAllowData'; - export const UpdateGroupRequestRequirementsItemAllow = core.serialization.object({ data: UpdateGroupRequestRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.d.ts index b03e467cb3f..274a9882b13 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemAllowData.Raw, CommonApi.UpdateGroupRequestRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.js index f0eb25a70fe..60f3e7a62a6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts index dcb7a98e1d2..c6dfec14aa2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemThresholdData } from './UpdateGroupRequestRequirementsItemThresholdData'; - export declare const UpdateGroupRequestRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThreshold.Raw, CommonApi.UpdateGroupRequestRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.js index 04dd8f220f7..e4d00e18767 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemThresholdData } from './UpdateGroupRequestRequirementsItemThresholdData'; - export const UpdateGroupRequestRequirementsItemThreshold = core.serialization.object({ data: UpdateGroupRequestRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts index e6fd8e38b6c..6a218983b72 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemThresholdDataSource } from './UpdateGroupRequestRequirementsItemThresholdDataSource'; - export declare const UpdateGroupRequestRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThresholdData.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.js index dd8e3d9c9e8..fbc55848f1f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemThresholdDataSource } from './UpdateGroupRequestRequirementsItemThresholdDataSource'; - export const UpdateGroupRequestRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts index 49f56d8adef..d3690dadf05 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { UpdateGroupRequestRequirementsItemThresholdDataSourceOne } from './Upda import { UpdateGroupRequestRequirementsItemThresholdDataSourceThree } from './UpdateGroupRequestRequirementsItemThresholdDataSourceThree'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSource.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.js index 95d67857001..f678c8799e2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { UpdateGroupRequestRequirementsItemThresholdDataSourceOne } from './Upda import { UpdateGroupRequestRequirementsItemThresholdDataSourceThree } from './UpdateGroupRequestRequirementsItemThresholdDataSourceThree'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol'; - export const UpdateGroupRequestRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts index 250a477ce44..832d3c4c5dd 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceOne.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.js index 01fd508eae9..ac78d9731bc 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts index 79560b73900..c92e9815297 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceThree.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.js index 6e341f1046a..be7201d1507 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 662a8676840..5f2a16c3526 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js index 789e3860dd5..7bd4f2ab3d4 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts index fb32e45f0dc..7b18ac5c576 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.js index 56fa5b5a48f..3b318f4c0c1 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index 11c79b2d879..700c6eff36b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js index 4f2c59c1781..1699c9c5288 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts index f7cf8deab13..e546a6f9bf6 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js index d91316291cf..21b15a180e8 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupRequestRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.d.ts index 165770855db..496f9168b46 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseMetadata } from './UpdateGroupResponseMetadata'; import { UpdateGroupResponseRequirementsItem } from './UpdateGroupResponseRequirementsItem'; - export declare const UpdateGroupResponse: core.serialization.ObjectSchema< serializers.UpdateGroupResponse.Raw, CommonApi.UpdateGroupResponse diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.js index a09f0b5d354..e4cfc589ee8 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponse.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateGroupResponseMetadata } from './UpdateGroupResponseMetadata'; import { UpdateGroupResponseRequirementsItem } from './UpdateGroupResponseRequirementsItem'; - export const UpdateGroupResponse = core.serialization.object({ id: core.serialization.number().optional(), communityId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.d.ts index 766772ef4f0..b7222194f9b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseMetadata: core.serialization.ObjectSchema< serializers.UpdateGroupResponseMetadata.Raw, CommonApi.UpdateGroupResponseMetadata diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.js index 85f0d28a476..7bec1d11820 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseMetadata.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseMetadata = core.serialization.object({ name: core.serialization.string(), description: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts index b40a0382bb0..8994a95aa8e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemAllow } from './UpdateGroupResponseRequirementsItemAllow'; import { UpdateGroupResponseRequirementsItemThreshold } from './UpdateGroupResponseRequirementsItemThreshold'; - export declare const UpdateGroupResponseRequirementsItem: core.serialization.Schema< serializers.UpdateGroupResponseRequirementsItem.Raw, CommonApi.UpdateGroupResponseRequirementsItem @@ -15,11 +14,9 @@ export declare namespace UpdateGroupResponseRequirementsItem { type Raw = | UpdateGroupResponseRequirementsItem.Threshold | UpdateGroupResponseRequirementsItem.Allow; - interface Threshold extends UpdateGroupResponseRequirementsItemThreshold.Raw { rule: 'threshold'; } - interface Allow extends UpdateGroupResponseRequirementsItemAllow.Raw { rule: 'allow'; } diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.js index 76c82c5cee2..07fc4a6393f 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItem.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemAllow } from './UpdateGroupResponseRequirementsItemAllow'; import { UpdateGroupResponseRequirementsItemThreshold } from './UpdateGroupResponseRequirementsItemThreshold'; - export const UpdateGroupResponseRequirementsItem = core.serialization .union('rule', { threshold: UpdateGroupResponseRequirementsItemThreshold, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts index 0de20d6d1df..1fdc34b288a 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemAllowData } from './UpdateGroupResponseRequirementsItemAllowData'; - export declare const UpdateGroupResponseRequirementsItemAllow: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemAllow.Raw, CommonApi.UpdateGroupResponseRequirementsItemAllow diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.js index 65885dfcc53..cfa2ae4e927 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllow.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemAllowData } from './UpdateGroupResponseRequirementsItemAllowData'; - export const UpdateGroupResponseRequirementsItemAllow = core.serialization.object({ data: UpdateGroupResponseRequirementsItemAllowData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.d.ts index 876ee5021d6..4acc3a27c01 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseRequirementsItemAllowData: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemAllowData.Raw, CommonApi.UpdateGroupResponseRequirementsItemAllowData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.js index 59952672b3f..470a8177a6b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemAllowData.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseRequirementsItemAllowData = core.serialization.object({ allow: core.serialization.list(core.serialization.string()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts index 40b59745d22..9af2c1bc5bf 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemThresholdData } from './UpdateGroupResponseRequirementsItemThresholdData'; - export declare const UpdateGroupResponseRequirementsItemThreshold: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThreshold.Raw, CommonApi.UpdateGroupResponseRequirementsItemThreshold diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.js index d77b9a88fea..0b8e521bf9c 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThreshold.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemThresholdData } from './UpdateGroupResponseRequirementsItemThresholdData'; - export const UpdateGroupResponseRequirementsItemThreshold = core.serialization.object({ data: UpdateGroupResponseRequirementsItemThresholdData, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts index 10001c1fc1d..c40c27992fe 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemThresholdDataSource } from './UpdateGroupResponseRequirementsItemThresholdDataSource'; - export declare const UpdateGroupResponseRequirementsItemThresholdData: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThresholdData.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdData diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.js index 4e10eef6233..bc6954e36ff 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdData.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemThresholdDataSource } from './UpdateGroupResponseRequirementsItemThresholdDataSource'; - export const UpdateGroupResponseRequirementsItemThresholdData = core.serialization.object({ threshold: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts index ade856e2ad4..02f212f9584 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.d.ts @@ -8,7 +8,6 @@ import { UpdateGroupResponseRequirementsItemThresholdDataSourceOne } from './Upd import { UpdateGroupResponseRequirementsItemThresholdDataSourceThree } from './UpdateGroupResponseRequirementsItemThresholdDataSourceThree'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSource: core.serialization.Schema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSource.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSource diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.js index 00faf52a5ee..4fdc1dbd091 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSource.js @@ -6,7 +6,6 @@ import { UpdateGroupResponseRequirementsItemThresholdDataSourceOne } from './Upd import { UpdateGroupResponseRequirementsItemThresholdDataSourceThree } from './UpdateGroupResponseRequirementsItemThresholdDataSourceThree'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol'; - export const UpdateGroupResponseRequirementsItemThresholdDataSource = core.serialization.undiscriminatedUnion([ UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId, diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.d.ts index 63ca763ac9d..4225a99277b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceOne: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceOne.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceOne diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.js index aefc7cbe6c0..aa50d561ba2 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceOne.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceOne = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts index 657df695d4e..17d89e0d31e 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceThree: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceThree.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceThree diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.js index ae510cb7ae1..90b071849fa 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThree.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType } from './UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceThree = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.d.ts index 5c32255be3d..2b08a519e48 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType: core.serialization.Schema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.js index 4bb70fdc798..dbcfc5d4c95 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceThreeSourceType = core.serialization.enum_(['cw721', 'cw20']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts index 714d149c391..e4f2ac71a80 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.js index 7e4c52488a1..f7d24b861b5 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType } from './UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenId = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts index ffc2de9d2c6..691422ab38b 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType: core.serialization.Schema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.js index 23370888b95..e77f050d618 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenIdSourceType = core.serialization.enum_(['erc20', 'erc721', 'erc1155', 'spl']); diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.d.ts index 118f4cdc725..6628537dda9 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol: core.serialization.ObjectSchema< serializers.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.Raw, CommonApi.UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.js b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.js index b9907104c32..283c63fb873 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateGroupResponseRequirementsItemThresholdDataSourceTokenSymbol = core.serialization.object({ sourceType: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.d.ts index a7d3527c67f..97958fdd4f8 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateTopicResponseTopic } from './UpdateTopicResponseTopic'; - export declare const UpdateTopicResponse: core.serialization.ObjectSchema< serializers.UpdateTopicResponse.Raw, CommonApi.UpdateTopicResponse diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.js b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.js index b8711dfe8a2..36cd84132f0 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateTopicResponseTopic } from './UpdateTopicResponseTopic'; - export const UpdateTopicResponse = core.serialization.object({ topic: UpdateTopicResponseTopic, userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.d.ts index b0aa772f7cf..000189f4b90 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateTopicResponseTopicContestTopicsItem } from './UpdateTopicResponseTopicContestTopicsItem'; import { UpdateTopicResponseTopicWeightedVoting } from './UpdateTopicResponseTopicWeightedVoting'; - export declare const UpdateTopicResponseTopic: core.serialization.ObjectSchema< serializers.UpdateTopicResponseTopic.Raw, CommonApi.UpdateTopicResponseTopic diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.js b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.js index ed0163b224e..32593c9d594 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateTopicResponseTopicContestTopicsItem } from './UpdateTopicResponseTopicContestTopicsItem'; import { UpdateTopicResponseTopicWeightedVoting } from './UpdateTopicResponseTopicWeightedVoting'; - export const UpdateTopicResponseTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.d.ts index a42e1bb473c..63e2989ed04 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateTopicResponseTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateTopicResponseTopicContestTopicsItem.Raw, CommonApi.UpdateTopicResponseTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.js index 8354f5f50ae..e905f9607af 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateTopicResponseTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.d.ts index 2b0d6509b5f..bc96da114ef 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateTopicResponseTopicWeightedVoting: core.serialization.Schema< serializers.UpdateTopicResponseTopicWeightedVoting.Raw, CommonApi.UpdateTopicResponseTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.js index 17e14d94c71..8b5b5f515a3 100644 --- a/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/community/types/UpdateTopicResponseTopicWeightedVoting.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateTopicResponseTopicWeightedVoting = core.serialization.enum_([ 'stake', 'erc20', diff --git a/libs/api-client/src/serialization/resources/index.d.ts b/libs/api-client/src/serialization/resources/index.d.ts index 9d93375d2da..4301125bdc3 100644 --- a/libs/api-client/src/serialization/resources/index.d.ts +++ b/libs/api-client/src/serialization/resources/index.d.ts @@ -10,3 +10,5 @@ export * from './reaction/types'; export * as thread from './thread'; export * from './thread/client/requests'; export * from './thread/types'; +export * as user from './user'; +export * from './user/types'; diff --git a/libs/api-client/src/serialization/resources/index.js b/libs/api-client/src/serialization/resources/index.js index 9d93375d2da..4301125bdc3 100644 --- a/libs/api-client/src/serialization/resources/index.js +++ b/libs/api-client/src/serialization/resources/index.js @@ -10,3 +10,5 @@ export * from './reaction/types'; export * as thread from './thread'; export * from './thread/client/requests'; export * from './thread/types'; +export * as user from './user'; +export * from './user/types'; diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.d.ts b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.d.ts index ca3f272b048..f6874c9b9de 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const CreateCommentReactionRequest: core.serialization.Schema< serializers.CreateCommentReactionRequest.Raw, CommonApi.CreateCommentReactionRequest diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.js b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.js index a4cb0e6ea57..a3b4de3fa7e 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.js +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateCommentReactionRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const CreateCommentReactionRequest = core.serialization.object({ commentId: core.serialization.property( 'comment_id', diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.d.ts b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.d.ts index dbbb4628ec5..bcd92faaad1 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const CreateThreadReactionRequest: core.serialization.Schema< serializers.CreateThreadReactionRequest.Raw, CommonApi.CreateThreadReactionRequest diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.js b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.js index 96ac8f70e83..4f4e6f7ed06 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.js +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/CreateThreadReactionRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const CreateThreadReactionRequest = core.serialization.object({ threadId: core.serialization.property( 'thread_id', diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.d.ts b/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.d.ts index 0a4d4711e28..efc357c6b92 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const DeleteReactionRequest: core.serialization.Schema< serializers.DeleteReactionRequest.Raw, CommonApi.DeleteReactionRequest diff --git a/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.js b/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.js index c8cd0e0d8e5..a491a652c57 100644 --- a/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.js +++ b/libs/api-client/src/serialization/resources/reaction/client/requests/DeleteReactionRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const DeleteReactionRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.d.ts index 387ec78683b..bcff358efd4 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentReactionResponseAddress } from './CreateCommentReactionResponseAddress'; - export declare const CreateCommentReactionResponse: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponse.Raw, CommonApi.CreateCommentReactionResponse diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.js index 76c47b6b90d..3c7e76cdb62 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentReactionResponseAddress } from './CreateCommentReactionResponseAddress'; - export const CreateCommentReactionResponse = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts index 0f81e5d9543..2c8c28b8d20 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateCommentReactionResponseAddressRole } from './CreateCommentReactionResponseAddressRole'; import { CreateCommentReactionResponseAddressUser } from './CreateCommentReactionResponseAddressUser'; import { CreateCommentReactionResponseAddressWalletId } from './CreateCommentReactionResponseAddressWalletId'; - export declare const CreateCommentReactionResponseAddress: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponseAddress.Raw, CommonApi.CreateCommentReactionResponseAddress diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.js index 45e232952f8..a44131bf80d 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateCommentReactionResponseAddressRole } from './CreateCommentReactionResponseAddressRole'; import { CreateCommentReactionResponseAddressUser } from './CreateCommentReactionResponseAddressUser'; import { CreateCommentReactionResponseAddressWalletId } from './CreateCommentReactionResponseAddressWalletId'; - export const CreateCommentReactionResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.d.ts index 360c0e3930b..1aee25e6136 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentReactionResponseAddressRole: core.serialization.Schema< serializers.CreateCommentReactionResponseAddressRole.Raw, CommonApi.CreateCommentReactionResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.js index 744f78247f2..77503aa1958 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentReactionResponseAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts index 81da43134e3..fbe1df5772b 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateCommentReactionResponseAddressUserApiKey } from './CreateCommentR import { CreateCommentReactionResponseAddressUserEmailNotificationInterval } from './CreateCommentReactionResponseAddressUserEmailNotificationInterval'; import { CreateCommentReactionResponseAddressUserProfile } from './CreateCommentReactionResponseAddressUserProfile'; import { CreateCommentReactionResponseAddressUserProfileTagsItem } from './CreateCommentReactionResponseAddressUserProfileTagsItem'; - export declare const CreateCommentReactionResponseAddressUser: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponseAddressUser.Raw, CommonApi.CreateCommentReactionResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.js index ea4a38f741b..cc434538bfa 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUser.js @@ -6,7 +6,6 @@ import { CreateCommentReactionResponseAddressUserApiKey } from './CreateCommentR import { CreateCommentReactionResponseAddressUserEmailNotificationInterval } from './CreateCommentReactionResponseAddressUserEmailNotificationInterval'; import { CreateCommentReactionResponseAddressUserProfile } from './CreateCommentReactionResponseAddressUserProfile'; import { CreateCommentReactionResponseAddressUserProfileTagsItem } from './CreateCommentReactionResponseAddressUserProfileTagsItem'; - export const CreateCommentReactionResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..1c15af561fa --- /dev/null +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateCommentReactionResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateCommentReactionResponseAddressUserApiKey.Raw, + CommonApi.CreateCommentReactionResponseAddressUserApiKey +>; +export declare namespace CreateCommentReactionResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js new file mode 100644 index 00000000000..fe016910adb --- /dev/null +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateCommentReactionResponseAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.d.ts index cdce8d6e0f1..4a1a0e3c8de 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentReactionResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateCommentReactionResponseAddressUserEmailNotificationInterval.Raw, CommonApi.CreateCommentReactionResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.js index 26d1bd2bc6a..44f0fb250b4 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentReactionResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts index 36d6f583033..420614ee84c 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateCommentReactionResponseAddressUserProfileBackgroundImage } from './CreateCommentReactionResponseAddressUserProfileBackgroundImage'; - export declare const CreateCommentReactionResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponseAddressUserProfile.Raw, CommonApi.CreateCommentReactionResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.js index 70d97916e10..e96ec1cd7cb 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateCommentReactionResponseAddressUserProfileBackgroundImage } from './CreateCommentReactionResponseAddressUserProfileBackgroundImage'; - export const CreateCommentReactionResponseAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.d.ts index 79b266a5f59..1d2a6aeb6c3 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentReactionResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponseAddressUserProfileBackgroundImage.Raw, CommonApi.CreateCommentReactionResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.js index a366af0e223..88f13ef842b 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentReactionResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.d.ts index c0a02226f07..6eddee07d4d 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentReactionResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateCommentReactionResponseAddressUserProfileTagsItem.Raw, CommonApi.CreateCommentReactionResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.js index 36636b107c2..64ce35fb720 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentReactionResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.d.ts index 278334f7b05..682ea3b28e2 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateCommentReactionResponseAddressWalletId: core.serialization.Schema< serializers.CreateCommentReactionResponseAddressWalletId.Raw, CommonApi.CreateCommentReactionResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.js index fad776c9992..9ce1837cc2b 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateCommentReactionResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateCommentReactionResponseAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.d.ts index 299e0df705d..afe9d168bb9 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadReactionResponseAddress } from './CreateThreadReactionResponseAddress'; - export declare const CreateThreadReactionResponse: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponse.Raw, CommonApi.CreateThreadReactionResponse diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.js index dc684e47364..37eadb0400a 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponse.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadReactionResponseAddress } from './CreateThreadReactionResponseAddress'; - export const CreateThreadReactionResponse = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts index d66ad04e641..c6cbacbcc5e 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateThreadReactionResponseAddressRole } from './CreateThreadReactionResponseAddressRole'; import { CreateThreadReactionResponseAddressUser } from './CreateThreadReactionResponseAddressUser'; import { CreateThreadReactionResponseAddressWalletId } from './CreateThreadReactionResponseAddressWalletId'; - export declare const CreateThreadReactionResponseAddress: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponseAddress.Raw, CommonApi.CreateThreadReactionResponseAddress diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.js index 92710aa60c8..d679bdf3d8c 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateThreadReactionResponseAddressRole } from './CreateThreadReactionResponseAddressRole'; import { CreateThreadReactionResponseAddressUser } from './CreateThreadReactionResponseAddressUser'; import { CreateThreadReactionResponseAddressWalletId } from './CreateThreadReactionResponseAddressWalletId'; - export const CreateThreadReactionResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.d.ts index 4364af04a74..21902b06c22 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadReactionResponseAddressRole: core.serialization.Schema< serializers.CreateThreadReactionResponseAddressRole.Raw, CommonApi.CreateThreadReactionResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.js index 51c72ed8730..ca38abafe27 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadReactionResponseAddressRole = core.serialization.enum_( ['admin', 'moderator', 'member'], ); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts index 330bb0d6078..c0b8d1a60ab 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateThreadReactionResponseAddressUserApiKey } from './CreateThreadRea import { CreateThreadReactionResponseAddressUserEmailNotificationInterval } from './CreateThreadReactionResponseAddressUserEmailNotificationInterval'; import { CreateThreadReactionResponseAddressUserProfile } from './CreateThreadReactionResponseAddressUserProfile'; import { CreateThreadReactionResponseAddressUserProfileTagsItem } from './CreateThreadReactionResponseAddressUserProfileTagsItem'; - export declare const CreateThreadReactionResponseAddressUser: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponseAddressUser.Raw, CommonApi.CreateThreadReactionResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.js index 46679d65f3a..4da0ebec406 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUser.js @@ -6,7 +6,6 @@ import { CreateThreadReactionResponseAddressUserApiKey } from './CreateThreadRea import { CreateThreadReactionResponseAddressUserEmailNotificationInterval } from './CreateThreadReactionResponseAddressUserEmailNotificationInterval'; import { CreateThreadReactionResponseAddressUserProfile } from './CreateThreadReactionResponseAddressUserProfile'; import { CreateThreadReactionResponseAddressUserProfileTagsItem } from './CreateThreadReactionResponseAddressUserProfileTagsItem'; - export const CreateThreadReactionResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..55e463f5da0 --- /dev/null +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateThreadReactionResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateThreadReactionResponseAddressUserApiKey.Raw, + CommonApi.CreateThreadReactionResponseAddressUserApiKey +>; +export declare namespace CreateThreadReactionResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js new file mode 100644 index 00000000000..d51bc5dd6a0 --- /dev/null +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateThreadReactionResponseAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.d.ts index 06ec8e1033f..eec2941b2e8 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadReactionResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateThreadReactionResponseAddressUserEmailNotificationInterval.Raw, CommonApi.CreateThreadReactionResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.js index 3247f23dde8..9a442be295d 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadReactionResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts index 55127a96217..1525ea036ef 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadReactionResponseAddressUserProfileBackgroundImage } from './CreateThreadReactionResponseAddressUserProfileBackgroundImage'; - export declare const CreateThreadReactionResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponseAddressUserProfile.Raw, CommonApi.CreateThreadReactionResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.js index e524c849ca7..e33e47e2e19 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadReactionResponseAddressUserProfileBackgroundImage } from './CreateThreadReactionResponseAddressUserProfileBackgroundImage'; - export const CreateThreadReactionResponseAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.d.ts index f5a27c759aa..dd28ae4ca09 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadReactionResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponseAddressUserProfileBackgroundImage.Raw, CommonApi.CreateThreadReactionResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.js index 180f14520d3..156cbe733ab 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadReactionResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.d.ts index 6fa57ac3e4d..90b65ef9c37 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadReactionResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateThreadReactionResponseAddressUserProfileTagsItem.Raw, CommonApi.CreateThreadReactionResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.js index 362bc406f38..94acac7ad46 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadReactionResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.d.ts index c06e81394cd..14eef58cbc6 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadReactionResponseAddressWalletId: core.serialization.Schema< serializers.CreateThreadReactionResponseAddressWalletId.Raw, CommonApi.CreateThreadReactionResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.js index 0df086b4f4f..847991eb5ea 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/reaction/types/CreateThreadReactionResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadReactionResponseAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.d.ts b/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.d.ts index a4834e45d62..f0b004b32c6 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.d.ts +++ b/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const DeleteReactionResponse: core.serialization.ObjectSchema< serializers.DeleteReactionResponse.Raw, CommonApi.DeleteReactionResponse diff --git a/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.js b/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.js index 6805041e10f..09141812319 100644 --- a/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.js +++ b/libs/api-client/src/serialization/resources/reaction/types/DeleteReactionResponse.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const DeleteReactionResponse = core.serialization.object({ reactionId: core.serialization.property( 'reaction_id', diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.d.ts b/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.d.ts index 232cc9ade8e..fbbc0a401ae 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.d.ts +++ b/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { CreateThreadRequestDiscordMeta } from '../../types/CreateThreadRequestDiscordMeta'; import { CreateThreadRequestKind } from '../../types/CreateThreadRequestKind'; - export declare const CreateThreadRequest: core.serialization.Schema< serializers.CreateThreadRequest.Raw, CommonApi.CreateThreadRequest diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.js b/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.js index d1eee50ca2b..7b78f5ca0a7 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.js +++ b/libs/api-client/src/serialization/resources/thread/client/requests/CreateThreadRequest.js @@ -4,7 +4,6 @@ import * as core from '../../../../../core'; import { CreateThreadRequestDiscordMeta } from '../../types/CreateThreadRequestDiscordMeta'; import { CreateThreadRequestKind } from '../../types/CreateThreadRequestKind'; - export const CreateThreadRequest = core.serialization.object({ communityId: core.serialization.property( 'community_id', diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.d.ts b/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.d.ts index 176c896e464..f9165f8477d 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.d.ts +++ b/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; - export declare const DeleteThreadRequest: core.serialization.Schema< serializers.DeleteThreadRequest.Raw, CommonApi.DeleteThreadRequest diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.js b/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.js index eefb67d6ffd..4c81fd92990 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.js +++ b/libs/api-client/src/serialization/resources/thread/client/requests/DeleteThreadRequest.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../../core'; - export const DeleteThreadRequest = core.serialization.object({ threadId: core.serialization.property( 'thread_id', diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.d.ts b/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.d.ts index 61600799aca..89165f17dab 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.d.ts +++ b/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../../api/index'; import * as core from '../../../../../core'; import * as serializers from '../../../../index'; import { UpdateThreadRequestCollaborators } from '../../types/UpdateThreadRequestCollaborators'; - export declare const UpdateThreadRequest: core.serialization.Schema< serializers.UpdateThreadRequest.Raw, CommonApi.UpdateThreadRequest diff --git a/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.js b/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.js index c827be42dfa..3ec22719dee 100644 --- a/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.js +++ b/libs/api-client/src/serialization/resources/thread/client/requests/UpdateThreadRequest.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../../core'; import { UpdateThreadRequestCollaborators } from '../../types/UpdateThreadRequestCollaborators'; - export const UpdateThreadRequest = core.serialization.object({ threadId: core.serialization.property( 'thread_id', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts index a7abcc9beb7..6b94cf3a9c3 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadRequestDiscordMetaUser } from './CreateThreadRequestDiscordMetaUser'; - export declare const CreateThreadRequestDiscordMeta: core.serialization.ObjectSchema< serializers.CreateThreadRequestDiscordMeta.Raw, CommonApi.CreateThreadRequestDiscordMeta diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.js index a65fd34550a..435f401f9d2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadRequestDiscordMetaUser } from './CreateThreadRequestDiscordMetaUser'; - export const CreateThreadRequestDiscordMeta = core.serialization.object({ user: CreateThreadRequestDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.d.ts index 7f5a9938c55..7a6dfa78ee8 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadRequestDiscordMetaUser: core.serialization.ObjectSchema< serializers.CreateThreadRequestDiscordMetaUser.Raw, CommonApi.CreateThreadRequestDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.js index 22b2d153dce..51f34dd6857 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadRequestDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.d.ts index 007102ef967..41f77eab307 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadRequestKind: core.serialization.Schema< serializers.CreateThreadRequestKind.Raw, CommonApi.CreateThreadRequestKind diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.js index a391bc94acd..8072b951aa3 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadRequestKind.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadRequestKind = core.serialization.enum_([ 'discussion', 'link', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.d.ts index 5b82c0e9af3..4ba7eb3d4e0 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.d.ts @@ -12,7 +12,6 @@ import { CreateThreadResponseReactionsItem } from './CreateThreadResponseReactio import { CreateThreadResponseSearch } from './CreateThreadResponseSearch'; import { CreateThreadResponseThreadVersionHistoriesItem } from './CreateThreadResponseThreadVersionHistoriesItem'; import { CreateThreadResponseTopic } from './CreateThreadResponseTopic'; - export declare const CreateThreadResponse: core.serialization.ObjectSchema< serializers.CreateThreadResponse.Raw, CommonApi.CreateThreadResponse @@ -23,14 +22,13 @@ export declare namespace CreateThreadResponse { address_id: number; title: string; kind: string; - stage: string; + stage?: string | null; body?: string | null; - plaintext?: string | null; url?: string | null; topic_id?: number | null; pinned?: boolean | null; community_id: string; - view_count: number; + view_count?: number | null; links?: CreateThreadResponseLinksItem.Raw[] | null; content_url?: string | null; read_only?: boolean | null; @@ -46,9 +44,9 @@ export declare namespace CreateThreadResponse { archived_at?: string | null; locked_at?: string | null; discord_meta?: CreateThreadResponseDiscordMeta.Raw | null; - reaction_count: number; - reaction_weights_sum: number; - comment_count: number; + reaction_count?: number | null; + reaction_weights_sum?: number | null; + comment_count?: number | null; activity_rank_date?: string | null; created_by?: string | null; profile_name?: string | null; diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.js index 4c8151803a2..1ad7c570987 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponse.js @@ -10,7 +10,6 @@ import { CreateThreadResponseReactionsItem } from './CreateThreadResponseReactio import { CreateThreadResponseSearch } from './CreateThreadResponseSearch'; import { CreateThreadResponseThreadVersionHistoriesItem } from './CreateThreadResponseThreadVersionHistoriesItem'; import { CreateThreadResponseTopic } from './CreateThreadResponseTopic'; - export const CreateThreadResponse = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( @@ -19,9 +18,8 @@ export const CreateThreadResponse = core.serialization.object({ ), title: core.serialization.string(), kind: core.serialization.string(), - stage: core.serialization.string(), + stage: core.serialization.string().optional(), body: core.serialization.string().optional(), - plaintext: core.serialization.string().optional(), url: core.serialization.string().optional(), topicId: core.serialization.property( 'topic_id', @@ -34,7 +32,7 @@ export const CreateThreadResponse = core.serialization.object({ ), viewCount: core.serialization.property( 'view_count', - core.serialization.number(), + core.serialization.number().optional(), ), links: core.serialization.list(CreateThreadResponseLinksItem).optional(), contentUrl: core.serialization.property( @@ -95,15 +93,15 @@ export const CreateThreadResponse = core.serialization.object({ ), reactionCount: core.serialization.property( 'reaction_count', - core.serialization.number(), + core.serialization.number().optional(), ), reactionWeightsSum: core.serialization.property( 'reaction_weights_sum', - core.serialization.number(), + core.serialization.number().optional(), ), commentCount: core.serialization.property( 'comment_count', - core.serialization.number(), + core.serialization.number().optional(), ), activityRankDate: core.serialization.property( 'activity_rank_date', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.d.ts index d0d1c36ffa4..437b14b7a28 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateThreadResponseAddressRole } from './CreateThreadResponseAddressRole'; import { CreateThreadResponseAddressUser } from './CreateThreadResponseAddressUser'; import { CreateThreadResponseAddressWalletId } from './CreateThreadResponseAddressWalletId'; - export declare const CreateThreadResponseAddress: core.serialization.ObjectSchema< serializers.CreateThreadResponseAddress.Raw, CommonApi.CreateThreadResponseAddress diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.js index 8e1be33b873..57f5452cc3b 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateThreadResponseAddressRole } from './CreateThreadResponseAddressRole'; import { CreateThreadResponseAddressUser } from './CreateThreadResponseAddressUser'; import { CreateThreadResponseAddressWalletId } from './CreateThreadResponseAddressWalletId'; - export const CreateThreadResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.d.ts index 59a52a79268..9ba8182d648 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseAddressRole: core.serialization.Schema< serializers.CreateThreadResponseAddressRole.Raw, CommonApi.CreateThreadResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.js index db038f1c640..7dc826d741a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.d.ts index 64cb8c88bc3..cbca8cbb19f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateThreadResponseAddressUserApiKey } from './CreateThreadResponseAdd import { CreateThreadResponseAddressUserEmailNotificationInterval } from './CreateThreadResponseAddressUserEmailNotificationInterval'; import { CreateThreadResponseAddressUserProfile } from './CreateThreadResponseAddressUserProfile'; import { CreateThreadResponseAddressUserProfileTagsItem } from './CreateThreadResponseAddressUserProfileTagsItem'; - export declare const CreateThreadResponseAddressUser: core.serialization.ObjectSchema< serializers.CreateThreadResponseAddressUser.Raw, CommonApi.CreateThreadResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.js index 7e68a8cd085..4cc1e32708c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUser.js @@ -6,7 +6,6 @@ import { CreateThreadResponseAddressUserApiKey } from './CreateThreadResponseAdd import { CreateThreadResponseAddressUserEmailNotificationInterval } from './CreateThreadResponseAddressUserEmailNotificationInterval'; import { CreateThreadResponseAddressUserProfile } from './CreateThreadResponseAddressUserProfile'; import { CreateThreadResponseAddressUserProfileTagsItem } from './CreateThreadResponseAddressUserProfileTagsItem'; - export const CreateThreadResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), email: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..3b5cf9d1c88 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateThreadResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateThreadResponseAddressUserApiKey.Raw, + CommonApi.CreateThreadResponseAddressUserApiKey +>; +export declare namespace CreateThreadResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.js new file mode 100644 index 00000000000..798e68eeeab --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserApiKey.js @@ -0,0 +1,23 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateThreadResponseAddressUserApiKey = core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), +}); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.d.ts index 4f7afbe5eda..7923459fa52 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateThreadResponseAddressUserEmailNotificationInterval.Raw, CommonApi.CreateThreadResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.js index 9d04d3519f3..b7d1a3df4b7 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts index c0ec433fa79..6a95bd6c3e1 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseAddressUserProfileBackgroundImage } from './CreateThreadResponseAddressUserProfileBackgroundImage'; - export declare const CreateThreadResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateThreadResponseAddressUserProfile.Raw, CommonApi.CreateThreadResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.js index 9c58a85f775..e6439e08678 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseAddressUserProfileBackgroundImage } from './CreateThreadResponseAddressUserProfileBackgroundImage'; - export const CreateThreadResponseAddressUserProfile = core.serialization.object( { name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.d.ts index d75acd73ffa..5c3368ab42b 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateThreadResponseAddressUserProfileBackgroundImage.Raw, CommonApi.CreateThreadResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.js index 80eccaecf1e..3ab1ea2fe38 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.d.ts index 2aad20120dd..ceb259c6d9a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseAddressUserProfileTagsItem.Raw, CommonApi.CreateThreadResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.js index c5430279c9f..47726d158be 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.d.ts index 83b672edb83..4fb0fea09ba 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseAddressWalletId: core.serialization.Schema< serializers.CreateThreadResponseAddressWalletId.Raw, CommonApi.CreateThreadResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.js index 6b8b0f1fcbe..df7515027b8 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseAddressWalletId = core.serialization.enum_([ 'magic', 'polkadot', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts index f0d88f142b4..7f0754c308a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateThreadResponseCollaboratorsItemRole } from './CreateThreadResponseCollaboratorsItemRole'; import { CreateThreadResponseCollaboratorsItemUser } from './CreateThreadResponseCollaboratorsItemUser'; import { CreateThreadResponseCollaboratorsItemWalletId } from './CreateThreadResponseCollaboratorsItemWalletId'; - export declare const CreateThreadResponseCollaboratorsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseCollaboratorsItem.Raw, CommonApi.CreateThreadResponseCollaboratorsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.js index a9ef723f043..00787dcbcf8 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateThreadResponseCollaboratorsItemRole } from './CreateThreadResponseCollaboratorsItemRole'; import { CreateThreadResponseCollaboratorsItemUser } from './CreateThreadResponseCollaboratorsItemUser'; import { CreateThreadResponseCollaboratorsItemWalletId } from './CreateThreadResponseCollaboratorsItemWalletId'; - export const CreateThreadResponseCollaboratorsItem = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.d.ts index 61ead4d12d2..9cc22599d5f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseCollaboratorsItemRole: core.serialization.Schema< serializers.CreateThreadResponseCollaboratorsItemRole.Raw, CommonApi.CreateThreadResponseCollaboratorsItemRole diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.js index 108ab14c203..5ae593f6104 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseCollaboratorsItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts index 271ca588967..b995cb9de05 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.d.ts @@ -8,7 +8,6 @@ import { CreateThreadResponseCollaboratorsItemUserApiKey } from './CreateThreadR import { CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval } from './CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval'; import { CreateThreadResponseCollaboratorsItemUserProfile } from './CreateThreadResponseCollaboratorsItemUserProfile'; import { CreateThreadResponseCollaboratorsItemUserProfileTagsItem } from './CreateThreadResponseCollaboratorsItemUserProfileTagsItem'; - export declare const CreateThreadResponseCollaboratorsItemUser: core.serialization.ObjectSchema< serializers.CreateThreadResponseCollaboratorsItemUser.Raw, CommonApi.CreateThreadResponseCollaboratorsItemUser diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.js index 84ebcdc2a55..dc7feaaaf06 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUser.js @@ -6,7 +6,6 @@ import { CreateThreadResponseCollaboratorsItemUserApiKey } from './CreateThreadR import { CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval } from './CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval'; import { CreateThreadResponseCollaboratorsItemUserProfile } from './CreateThreadResponseCollaboratorsItemUserProfile'; import { CreateThreadResponseCollaboratorsItemUserProfileTagsItem } from './CreateThreadResponseCollaboratorsItemUserProfileTagsItem'; - export const CreateThreadResponseCollaboratorsItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..f2b49bc6264 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateThreadResponseCollaboratorsItemUserApiKey: core.serialization.ObjectSchema< + serializers.CreateThreadResponseCollaboratorsItemUserApiKey.Raw, + CommonApi.CreateThreadResponseCollaboratorsItemUserApiKey +>; +export declare namespace CreateThreadResponseCollaboratorsItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..3ece453f397 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateThreadResponseCollaboratorsItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts index 0973f9a034f..d7171cd56e0 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.Raw, CommonApi.CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js index 046eb32e8c9..5be640f21ff 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseCollaboratorsItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts index 1410acd73f1..7c12c5b20e6 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage } from './CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage'; - export declare const CreateThreadResponseCollaboratorsItemUserProfile: core.serialization.ObjectSchema< serializers.CreateThreadResponseCollaboratorsItemUserProfile.Raw, CommonApi.CreateThreadResponseCollaboratorsItemUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.js index fc69cdbbd33..831ac316e10 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage } from './CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage'; - export const CreateThreadResponseCollaboratorsItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts index a6b3259202d..522ba9ab81c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.Raw, CommonApi.CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js index 310e438c9e4..62164dd02fb 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseCollaboratorsItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts index d3a27fe4ea3..4e05c756f2a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseCollaboratorsItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseCollaboratorsItemUserProfileTagsItem.Raw, CommonApi.CreateThreadResponseCollaboratorsItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.js index 52b108884eb..ca07a44ca31 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseCollaboratorsItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.d.ts index 4285dc4f730..5b825e35152 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseCollaboratorsItemWalletId: core.serialization.Schema< serializers.CreateThreadResponseCollaboratorsItemWalletId.Raw, CommonApi.CreateThreadResponseCollaboratorsItemWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.js index b58392c1aaa..0ea91ab87ed 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseCollaboratorsItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseCollaboratorsItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts index 8e50d6ca2de..fb10d0faa2e 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseDiscordMetaUser } from './CreateThreadResponseDiscordMetaUser'; - export declare const CreateThreadResponseDiscordMeta: core.serialization.ObjectSchema< serializers.CreateThreadResponseDiscordMeta.Raw, CommonApi.CreateThreadResponseDiscordMeta diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.js index 7d8dea703d7..59483e37a5b 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseDiscordMetaUser } from './CreateThreadResponseDiscordMetaUser'; - export const CreateThreadResponseDiscordMeta = core.serialization.object({ user: CreateThreadResponseDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.d.ts index f96061978fb..a308215bcea 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseDiscordMetaUser: core.serialization.ObjectSchema< serializers.CreateThreadResponseDiscordMetaUser.Raw, CommonApi.CreateThreadResponseDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.js index 86c8a468647..088bfa2d9cb 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.d.ts index 44b0902edc9..48a00cfbafd 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseLinksItemSource } from './CreateThreadResponseLinksItemSource'; - export declare const CreateThreadResponseLinksItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseLinksItem.Raw, CommonApi.CreateThreadResponseLinksItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.js index a5767029e3c..e86f36b23da 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseLinksItemSource } from './CreateThreadResponseLinksItemSource'; - export const CreateThreadResponseLinksItem = core.serialization.object({ source: CreateThreadResponseLinksItemSource, identifier: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.d.ts index f244a3a233d..fe50cee2d6a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseLinksItemSource: core.serialization.Schema< serializers.CreateThreadResponseLinksItemSource.Raw, CommonApi.CreateThreadResponseLinksItemSource diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.js index 497ab242a85..a163dd9f3bf 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseLinksItemSource.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseLinksItemSource = core.serialization.enum_([ 'snapshot', 'proposal', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.d.ts index 7afe4853ea2..5fd9de07c97 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseReactionsItemAddress } from './CreateThreadResponseReactionsItemAddress'; - export declare const CreateThreadResponseReactionsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItem.Raw, CommonApi.CreateThreadResponseReactionsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.js index 2cd320b86cd..a98045ba4c8 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseReactionsItemAddress } from './CreateThreadResponseReactionsItemAddress'; - export const CreateThreadResponseReactionsItem = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts index f1d0ef96558..ad1e2a33153 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { CreateThreadResponseReactionsItemAddressRole } from './CreateThreadResponseReactionsItemAddressRole'; import { CreateThreadResponseReactionsItemAddressUser } from './CreateThreadResponseReactionsItemAddressUser'; import { CreateThreadResponseReactionsItemAddressWalletId } from './CreateThreadResponseReactionsItemAddressWalletId'; - export declare const CreateThreadResponseReactionsItemAddress: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItemAddress.Raw, CommonApi.CreateThreadResponseReactionsItemAddress diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.js index 0050c7fd7b0..2dd45782b0c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { CreateThreadResponseReactionsItemAddressRole } from './CreateThreadResponseReactionsItemAddressRole'; import { CreateThreadResponseReactionsItemAddressUser } from './CreateThreadResponseReactionsItemAddressUser'; import { CreateThreadResponseReactionsItemAddressWalletId } from './CreateThreadResponseReactionsItemAddressWalletId'; - export const CreateThreadResponseReactionsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.d.ts index 2299a5be0d1..4d1889676db 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseReactionsItemAddressRole: core.serialization.Schema< serializers.CreateThreadResponseReactionsItemAddressRole.Raw, CommonApi.CreateThreadResponseReactionsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.js index 093dc063b76..8d4face8001 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseReactionsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts index 2024a1f6982..286a6c63a5a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { CreateThreadResponseReactionsItemAddressUserApiKey } from './CreateThre import { CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval } from './CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval'; import { CreateThreadResponseReactionsItemAddressUserProfile } from './CreateThreadResponseReactionsItemAddressUserProfile'; import { CreateThreadResponseReactionsItemAddressUserProfileTagsItem } from './CreateThreadResponseReactionsItemAddressUserProfileTagsItem'; - export declare const CreateThreadResponseReactionsItemAddressUser: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItemAddressUser.Raw, CommonApi.CreateThreadResponseReactionsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.js index ec7ca886b78..50e86f2c40f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUser.js @@ -6,7 +6,6 @@ import { CreateThreadResponseReactionsItemAddressUserApiKey } from './CreateThre import { CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval } from './CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval'; import { CreateThreadResponseReactionsItemAddressUserProfile } from './CreateThreadResponseReactionsItemAddressUserProfile'; import { CreateThreadResponseReactionsItemAddressUserProfileTagsItem } from './CreateThreadResponseReactionsItemAddressUserProfileTagsItem'; - export const CreateThreadResponseReactionsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..91b55126876 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const CreateThreadResponseReactionsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.CreateThreadResponseReactionsItemAddressUserApiKey.Raw, + CommonApi.CreateThreadResponseReactionsItemAddressUserApiKey +>; +export declare namespace CreateThreadResponseReactionsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..22688568369 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const CreateThreadResponseReactionsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts index dfdb58a27a4..5233d55ea3a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.Raw, CommonApi.CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js index 3306be9c4bc..9684a88f228 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseReactionsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts index 8594fcc546e..f2becf3015c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage } from './CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage'; - export declare const CreateThreadResponseReactionsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItemAddressUserProfile.Raw, CommonApi.CreateThreadResponseReactionsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.js index 9ba267dc292..9409c1cc3aa 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage } from './CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage'; - export const CreateThreadResponseReactionsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts index 79d13345629..84fb748d606 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.Raw, CommonApi.CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js index 9b1109901e6..35777f7081a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseReactionsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts index bca52927957..e8f532ca9b2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseReactionsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseReactionsItemAddressUserProfileTagsItem.Raw, CommonApi.CreateThreadResponseReactionsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.js index fb554aca95e..9e692736507 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseReactionsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.d.ts index 4ab68b2951b..1ad05139228 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseReactionsItemAddressWalletId: core.serialization.Schema< serializers.CreateThreadResponseReactionsItemAddressWalletId.Raw, CommonApi.CreateThreadResponseReactionsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.js index d4f723801db..661fc86b9c3 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseReactionsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseReactionsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.d.ts index 791df7d6407..81b177db44e 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseSearch: core.serialization.Schema< serializers.CreateThreadResponseSearch.Raw, CommonApi.CreateThreadResponseSearch diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.js index 855398af5e2..c91efb59370 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.d.ts index 6537cc54ea3..1de21a102e0 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseThreadVersionHistoriesItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseThreadVersionHistoriesItem.Raw, CommonApi.CreateThreadResponseThreadVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.js index cf79640f749..19bad013439 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseThreadVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseThreadVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.d.ts index 107f0657b5b..a6ec61e80e6 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { CreateThreadResponseTopicContestTopicsItem } from './CreateThreadResponseTopicContestTopicsItem'; import { CreateThreadResponseTopicWeightedVoting } from './CreateThreadResponseTopicWeightedVoting'; - export declare const CreateThreadResponseTopic: core.serialization.ObjectSchema< serializers.CreateThreadResponseTopic.Raw, CommonApi.CreateThreadResponseTopic diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.js index 4721ea54d4f..1fd8fd444d3 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { CreateThreadResponseTopicContestTopicsItem } from './CreateThreadResponseTopicContestTopicsItem'; import { CreateThreadResponseTopicWeightedVoting } from './CreateThreadResponseTopicWeightedVoting'; - export const CreateThreadResponseTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.d.ts index d058f121de0..f2baac9605c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.CreateThreadResponseTopicContestTopicsItem.Raw, CommonApi.CreateThreadResponseTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.js index dd410e7e4ce..03da2ed6aee 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.d.ts index 28659bbda06..8107ee0f1ea 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const CreateThreadResponseTopicWeightedVoting: core.serialization.Schema< serializers.CreateThreadResponseTopicWeightedVoting.Raw, CommonApi.CreateThreadResponseTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.js index a0bee56ef25..b6d4de42b69 100644 --- a/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/thread/types/CreateThreadResponseTopicWeightedVoting.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const CreateThreadResponseTopicWeightedVoting = core.serialization.enum_( ['stake', 'erc20'], ); diff --git a/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.d.ts b/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.d.ts index 562378c7fbc..d2535a031d2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const DeleteThreadResponse: core.serialization.ObjectSchema< serializers.DeleteThreadResponse.Raw, CommonApi.DeleteThreadResponse diff --git a/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.js b/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.js index 3d1576d9793..07b279c8368 100644 --- a/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.js +++ b/libs/api-client/src/serialization/resources/thread/types/DeleteThreadResponse.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const DeleteThreadResponse = core.serialization.object({ threadId: core.serialization.property( 'thread_id', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.d.ts index f03d257a67d..2ad3d419391 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadRequestCollaborators: core.serialization.ObjectSchema< serializers.UpdateThreadRequestCollaborators.Raw, CommonApi.UpdateThreadRequestCollaborators diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.js index 78d55e94a58..abdcb4d6b0c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadRequestCollaborators.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadRequestCollaborators = core.serialization.object({ toAdd: core.serialization.list(core.serialization.number()).optional(), toRemove: core.serialization.list(core.serialization.number()).optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.d.ts index fae1326d100..766c71836df 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.d.ts @@ -12,7 +12,6 @@ import { UpdateThreadResponseReactionsItem } from './UpdateThreadResponseReactio import { UpdateThreadResponseSearch } from './UpdateThreadResponseSearch'; import { UpdateThreadResponseThreadVersionHistoriesItem } from './UpdateThreadResponseThreadVersionHistoriesItem'; import { UpdateThreadResponseTopic } from './UpdateThreadResponseTopic'; - export declare const UpdateThreadResponse: core.serialization.ObjectSchema< serializers.UpdateThreadResponse.Raw, CommonApi.UpdateThreadResponse @@ -23,14 +22,13 @@ export declare namespace UpdateThreadResponse { address_id: number; title: string; kind: string; - stage: string; + stage?: string | null; body?: string | null; - plaintext?: string | null; url?: string | null; topic_id?: number | null; pinned?: boolean | null; community_id: string; - view_count: number; + view_count?: number | null; links?: UpdateThreadResponseLinksItem.Raw[] | null; content_url?: string | null; read_only?: boolean | null; @@ -46,9 +44,9 @@ export declare namespace UpdateThreadResponse { archived_at?: string | null; locked_at?: string | null; discord_meta?: UpdateThreadResponseDiscordMeta.Raw | null; - reaction_count: number; - reaction_weights_sum: number; - comment_count: number; + reaction_count?: number | null; + reaction_weights_sum?: number | null; + comment_count?: number | null; activity_rank_date?: string | null; created_by?: string | null; profile_name?: string | null; diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.js index 76d6b821078..71fcff38e4c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponse.js @@ -10,7 +10,6 @@ import { UpdateThreadResponseReactionsItem } from './UpdateThreadResponseReactio import { UpdateThreadResponseSearch } from './UpdateThreadResponseSearch'; import { UpdateThreadResponseThreadVersionHistoriesItem } from './UpdateThreadResponseThreadVersionHistoriesItem'; import { UpdateThreadResponseTopic } from './UpdateThreadResponseTopic'; - export const UpdateThreadResponse = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( @@ -19,9 +18,8 @@ export const UpdateThreadResponse = core.serialization.object({ ), title: core.serialization.string(), kind: core.serialization.string(), - stage: core.serialization.string(), + stage: core.serialization.string().optional(), body: core.serialization.string().optional(), - plaintext: core.serialization.string().optional(), url: core.serialization.string().optional(), topicId: core.serialization.property( 'topic_id', @@ -34,7 +32,7 @@ export const UpdateThreadResponse = core.serialization.object({ ), viewCount: core.serialization.property( 'view_count', - core.serialization.number(), + core.serialization.number().optional(), ), links: core.serialization.list(UpdateThreadResponseLinksItem).optional(), contentUrl: core.serialization.property( @@ -95,15 +93,15 @@ export const UpdateThreadResponse = core.serialization.object({ ), reactionCount: core.serialization.property( 'reaction_count', - core.serialization.number(), + core.serialization.number().optional(), ), reactionWeightsSum: core.serialization.property( 'reaction_weights_sum', - core.serialization.number(), + core.serialization.number().optional(), ), commentCount: core.serialization.property( 'comment_count', - core.serialization.number(), + core.serialization.number().optional(), ), activityRankDate: core.serialization.property( 'activity_rank_date', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.d.ts index ddd573df95a..e3364d41bd7 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateThreadResponseAddressRole } from './UpdateThreadResponseAddressRole'; import { UpdateThreadResponseAddressUser } from './UpdateThreadResponseAddressUser'; import { UpdateThreadResponseAddressWalletId } from './UpdateThreadResponseAddressWalletId'; - export declare const UpdateThreadResponseAddress: core.serialization.ObjectSchema< serializers.UpdateThreadResponseAddress.Raw, CommonApi.UpdateThreadResponseAddress diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.js index 3161d728c27..46857ea577e 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateThreadResponseAddressRole } from './UpdateThreadResponseAddressRole'; import { UpdateThreadResponseAddressUser } from './UpdateThreadResponseAddressUser'; import { UpdateThreadResponseAddressWalletId } from './UpdateThreadResponseAddressWalletId'; - export const UpdateThreadResponseAddress = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.d.ts index 03c058a1c65..8f4c184a9f7 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseAddressRole: core.serialization.Schema< serializers.UpdateThreadResponseAddressRole.Raw, CommonApi.UpdateThreadResponseAddressRole diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.js index 38c1bddbd21..43d62b2095b 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressRole.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseAddressRole = core.serialization.enum_([ 'admin', 'moderator', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.d.ts index 43aee165ffa..2220f77fa51 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateThreadResponseAddressUserApiKey } from './UpdateThreadResponseAdd import { UpdateThreadResponseAddressUserEmailNotificationInterval } from './UpdateThreadResponseAddressUserEmailNotificationInterval'; import { UpdateThreadResponseAddressUserProfile } from './UpdateThreadResponseAddressUserProfile'; import { UpdateThreadResponseAddressUserProfileTagsItem } from './UpdateThreadResponseAddressUserProfileTagsItem'; - export declare const UpdateThreadResponseAddressUser: core.serialization.ObjectSchema< serializers.UpdateThreadResponseAddressUser.Raw, CommonApi.UpdateThreadResponseAddressUser diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.js index fa977ee0217..9e4ae2f1c03 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUser.js @@ -6,7 +6,6 @@ import { UpdateThreadResponseAddressUserApiKey } from './UpdateThreadResponseAdd import { UpdateThreadResponseAddressUserEmailNotificationInterval } from './UpdateThreadResponseAddressUserEmailNotificationInterval'; import { UpdateThreadResponseAddressUserProfile } from './UpdateThreadResponseAddressUserProfile'; import { UpdateThreadResponseAddressUserProfileTagsItem } from './UpdateThreadResponseAddressUserProfileTagsItem'; - export const UpdateThreadResponseAddressUser = core.serialization.object({ id: core.serialization.number().optional(), email: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts new file mode 100644 index 00000000000..92fe9d0ead4 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateThreadResponseAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateThreadResponseAddressUserApiKey.Raw, + CommonApi.UpdateThreadResponseAddressUserApiKey +>; +export declare namespace UpdateThreadResponseAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js new file mode 100644 index 00000000000..fe67ac6b927 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserApiKey.js @@ -0,0 +1,23 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateThreadResponseAddressUserApiKey = core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), +}); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.d.ts index 95770d66c79..0945ab0ba9c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateThreadResponseAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateThreadResponseAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.js index 27d11de36b8..c05ab72c99d 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts index 7bae38b0066..e34e624c89f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseAddressUserProfileBackgroundImage } from './UpdateThreadResponseAddressUserProfileBackgroundImage'; - export declare const UpdateThreadResponseAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateThreadResponseAddressUserProfile.Raw, CommonApi.UpdateThreadResponseAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.js index 87e043e891b..4a2e2dd4530 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseAddressUserProfileBackgroundImage } from './UpdateThreadResponseAddressUserProfileBackgroundImage'; - export const UpdateThreadResponseAddressUserProfile = core.serialization.object( { name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.d.ts index c37660a2ccb..5ce08ea36c4 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateThreadResponseAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateThreadResponseAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.js index 755f7526f7d..f8103dc62d9 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.d.ts index bf27d8cd0da..e687084c986 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseAddressUserProfileTagsItem.Raw, CommonApi.UpdateThreadResponseAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.js index f2b9dafe0b9..719802028a2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.d.ts index ea604cf0974..bfac6246930 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseAddressWalletId: core.serialization.Schema< serializers.UpdateThreadResponseAddressWalletId.Raw, CommonApi.UpdateThreadResponseAddressWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.js index 8e80351b416..b17a516ccb9 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseAddressWalletId = core.serialization.enum_([ 'magic', 'polkadot', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts index bdf75b5af7a..c1167513f3d 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateThreadResponseCollaboratorsItemRole } from './UpdateThreadResponseCollaboratorsItemRole'; import { UpdateThreadResponseCollaboratorsItemUser } from './UpdateThreadResponseCollaboratorsItemUser'; import { UpdateThreadResponseCollaboratorsItemWalletId } from './UpdateThreadResponseCollaboratorsItemWalletId'; - export declare const UpdateThreadResponseCollaboratorsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseCollaboratorsItem.Raw, CommonApi.UpdateThreadResponseCollaboratorsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.js index bcdb6142034..94e609ba616 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItem.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateThreadResponseCollaboratorsItemRole } from './UpdateThreadResponseCollaboratorsItemRole'; import { UpdateThreadResponseCollaboratorsItemUser } from './UpdateThreadResponseCollaboratorsItemUser'; import { UpdateThreadResponseCollaboratorsItemWalletId } from './UpdateThreadResponseCollaboratorsItemWalletId'; - export const UpdateThreadResponseCollaboratorsItem = core.serialization.object({ id: core.serialization.number().optional(), address: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.d.ts index 2ff4dc98177..d997e13d49f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseCollaboratorsItemRole: core.serialization.Schema< serializers.UpdateThreadResponseCollaboratorsItemRole.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemRole diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.js index 35c324684c0..e686c1434bf 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseCollaboratorsItemRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts index 9ab14d0d6b0..6629b18cf02 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.d.ts @@ -8,7 +8,6 @@ import { UpdateThreadResponseCollaboratorsItemUserApiKey } from './UpdateThreadR import { UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval } from './UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval'; import { UpdateThreadResponseCollaboratorsItemUserProfile } from './UpdateThreadResponseCollaboratorsItemUserProfile'; import { UpdateThreadResponseCollaboratorsItemUserProfileTagsItem } from './UpdateThreadResponseCollaboratorsItemUserProfileTagsItem'; - export declare const UpdateThreadResponseCollaboratorsItemUser: core.serialization.ObjectSchema< serializers.UpdateThreadResponseCollaboratorsItemUser.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemUser diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.js index b90a344f274..aa965af1dbd 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUser.js @@ -6,7 +6,6 @@ import { UpdateThreadResponseCollaboratorsItemUserApiKey } from './UpdateThreadR import { UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval } from './UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval'; import { UpdateThreadResponseCollaboratorsItemUserProfile } from './UpdateThreadResponseCollaboratorsItemUserProfile'; import { UpdateThreadResponseCollaboratorsItemUserProfileTagsItem } from './UpdateThreadResponseCollaboratorsItemUserProfileTagsItem'; - export const UpdateThreadResponseCollaboratorsItemUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts new file mode 100644 index 00000000000..0b63a7117d4 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateThreadResponseCollaboratorsItemUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateThreadResponseCollaboratorsItemUserApiKey.Raw, + CommonApi.UpdateThreadResponseCollaboratorsItemUserApiKey +>; +export declare namespace UpdateThreadResponseCollaboratorsItemUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js new file mode 100644 index 00000000000..9595f039130 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateThreadResponseCollaboratorsItemUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts index f44342a8ba5..5f1f4f4d0a4 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js index bf5c5807cd8..eb8e131defd 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseCollaboratorsItemUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts index 1ed54ab4ce5..b8dc9345dc3 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage } from './UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage'; - export declare const UpdateThreadResponseCollaboratorsItemUserProfile: core.serialization.ObjectSchema< serializers.UpdateThreadResponseCollaboratorsItemUserProfile.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.js index 910b78ab245..e5064197e19 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage } from './UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage'; - export const UpdateThreadResponseCollaboratorsItemUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts index 8cad2eccdd0..34be5724db4 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js index a517bd7c383..77569fcc733 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseCollaboratorsItemUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts index 72d5f20f683..3e115a6bec4 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseCollaboratorsItemUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.js index 14bb5c799e3..3d716a636c7 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseCollaboratorsItemUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.d.ts index 4d16dfcfbd5..f71b6dd9b66 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseCollaboratorsItemWalletId: core.serialization.Schema< serializers.UpdateThreadResponseCollaboratorsItemWalletId.Raw, CommonApi.UpdateThreadResponseCollaboratorsItemWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.js index 3261f02521e..ef5cf78c650 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseCollaboratorsItemWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseCollaboratorsItemWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts index c749dea80e3..c327ad1d29c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseDiscordMetaUser } from './UpdateThreadResponseDiscordMetaUser'; - export declare const UpdateThreadResponseDiscordMeta: core.serialization.ObjectSchema< serializers.UpdateThreadResponseDiscordMeta.Raw, CommonApi.UpdateThreadResponseDiscordMeta diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.js index f1fe1f5027f..7b9d4639c8f 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMeta.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseDiscordMetaUser } from './UpdateThreadResponseDiscordMetaUser'; - export const UpdateThreadResponseDiscordMeta = core.serialization.object({ user: UpdateThreadResponseDiscordMetaUser, channelId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.d.ts index 2280e3744b6..17b31b4d600 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseDiscordMetaUser: core.serialization.ObjectSchema< serializers.UpdateThreadResponseDiscordMetaUser.Raw, CommonApi.UpdateThreadResponseDiscordMetaUser diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.js index 5a43fa64e1b..e834bd4c3d2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseDiscordMetaUser.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseDiscordMetaUser = core.serialization.object({ id: core.serialization.string(), username: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.d.ts index a3c061148f8..295ddb5cff9 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseLinksItemSource } from './UpdateThreadResponseLinksItemSource'; - export declare const UpdateThreadResponseLinksItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseLinksItem.Raw, CommonApi.UpdateThreadResponseLinksItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.js index 35f9153861d..205bf4d845a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseLinksItemSource } from './UpdateThreadResponseLinksItemSource'; - export const UpdateThreadResponseLinksItem = core.serialization.object({ source: UpdateThreadResponseLinksItemSource, identifier: core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.d.ts index bf34e435c1e..3edd4943876 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseLinksItemSource: core.serialization.Schema< serializers.UpdateThreadResponseLinksItemSource.Raw, CommonApi.UpdateThreadResponseLinksItemSource diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.js index 61bf701c093..87e697fd57a 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseLinksItemSource.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseLinksItemSource = core.serialization.enum_([ 'snapshot', 'proposal', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts index 9eb799f2b9e..913de19f705 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseReactionsItemAddress } from './UpdateThreadResponseReactionsItemAddress'; - export declare const UpdateThreadResponseReactionsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItem.Raw, CommonApi.UpdateThreadResponseReactionsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.js index 95bb61af7e6..438d9009090 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItem.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseReactionsItemAddress } from './UpdateThreadResponseReactionsItemAddress'; - export const UpdateThreadResponseReactionsItem = core.serialization.object({ id: core.serialization.number().optional(), addressId: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts index a66f6d616c9..1a26fca9955 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.d.ts @@ -7,7 +7,6 @@ import * as serializers from '../../../index'; import { UpdateThreadResponseReactionsItemAddressRole } from './UpdateThreadResponseReactionsItemAddressRole'; import { UpdateThreadResponseReactionsItemAddressUser } from './UpdateThreadResponseReactionsItemAddressUser'; import { UpdateThreadResponseReactionsItemAddressWalletId } from './UpdateThreadResponseReactionsItemAddressWalletId'; - export declare const UpdateThreadResponseReactionsItemAddress: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItemAddress.Raw, CommonApi.UpdateThreadResponseReactionsItemAddress diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.js index 48f28f2c6ca..3587c52d633 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddress.js @@ -5,7 +5,6 @@ import * as core from '../../../../core'; import { UpdateThreadResponseReactionsItemAddressRole } from './UpdateThreadResponseReactionsItemAddressRole'; import { UpdateThreadResponseReactionsItemAddressUser } from './UpdateThreadResponseReactionsItemAddressUser'; import { UpdateThreadResponseReactionsItemAddressWalletId } from './UpdateThreadResponseReactionsItemAddressWalletId'; - export const UpdateThreadResponseReactionsItemAddress = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.d.ts index c855124ff9b..c65c4b96651 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseReactionsItemAddressRole: core.serialization.Schema< serializers.UpdateThreadResponseReactionsItemAddressRole.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressRole diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.js index 7bd2a0612c8..5b77c045934 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressRole.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseReactionsItemAddressRole = core.serialization.enum_(['admin', 'moderator', 'member']); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts index ec82075576c..d7921f7e93c 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.d.ts @@ -8,7 +8,6 @@ import { UpdateThreadResponseReactionsItemAddressUserApiKey } from './UpdateThre import { UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval } from './UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval'; import { UpdateThreadResponseReactionsItemAddressUserProfile } from './UpdateThreadResponseReactionsItemAddressUserProfile'; import { UpdateThreadResponseReactionsItemAddressUserProfileTagsItem } from './UpdateThreadResponseReactionsItemAddressUserProfileTagsItem'; - export declare const UpdateThreadResponseReactionsItemAddressUser: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItemAddressUser.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressUser diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.js index b61fbb9f728..4975717688e 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUser.js @@ -6,7 +6,6 @@ import { UpdateThreadResponseReactionsItemAddressUserApiKey } from './UpdateThre import { UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval } from './UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval'; import { UpdateThreadResponseReactionsItemAddressUserProfile } from './UpdateThreadResponseReactionsItemAddressUserProfile'; import { UpdateThreadResponseReactionsItemAddressUserProfileTagsItem } from './UpdateThreadResponseReactionsItemAddressUserProfileTagsItem'; - export const UpdateThreadResponseReactionsItemAddressUser = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts new file mode 100644 index 00000000000..968acb0dc83 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.d.ts @@ -0,0 +1,19 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const UpdateThreadResponseReactionsItemAddressUserApiKey: core.serialization.ObjectSchema< + serializers.UpdateThreadResponseReactionsItemAddressUserApiKey.Raw, + CommonApi.UpdateThreadResponseReactionsItemAddressUserApiKey +>; +export declare namespace UpdateThreadResponseReactionsItemAddressUserApiKey { + interface Raw { + user_id?: number | null; + hashed_api_key: string; + salt: string; + created_at?: string | null; + updated_at?: string | null; + } +} diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js new file mode 100644 index 00000000000..038efbb4f03 --- /dev/null +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserApiKey.js @@ -0,0 +1,24 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const UpdateThreadResponseReactionsItemAddressUserApiKey = + core.serialization.object({ + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + hashedApiKey: core.serialization.property( + 'hashed_api_key', + core.serialization.string(), + ), + salt: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.date().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.date().optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts index a06f7efac40..5561884a9d9 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval: core.serialization.Schema< serializers.UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js index d987353fe17..6ba0a1ef9bb 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval.js @@ -2,6 +2,5 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseReactionsItemAddressUserEmailNotificationInterval = core.serialization.enum_(['weekly', 'never']); diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts index 1fe1147358a..1232d78373b 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.d.ts @@ -5,7 +5,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage } from './UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage'; - export declare const UpdateThreadResponseReactionsItemAddressUserProfile: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItemAddressUserProfile.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressUserProfile diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.js index 8e209378c49..1fa762f90f7 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfile.js @@ -3,7 +3,6 @@ */ import * as core from '../../../../core'; import { UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage } from './UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage'; - export const UpdateThreadResponseReactionsItemAddressUserProfile = core.serialization.object({ name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts index a1978374664..26b0a3186a8 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js index 4e59787c4e9..f6c000c8366 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseReactionsItemAddressUserProfileBackgroundImage = core.serialization.object({ url: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts index f2a1348c657..83e90f8bb49 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseReactionsItemAddressUserProfileTagsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressUserProfileTagsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.js index ef9d9c24524..c1450f80415 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressUserProfileTagsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseReactionsItemAddressUserProfileTagsItem = core.serialization.object({ userId: core.serialization.property('user_id', core.serialization.number()), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.d.ts index ac7847dd711..5b7f932fd01 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseReactionsItemAddressWalletId: core.serialization.Schema< serializers.UpdateThreadResponseReactionsItemAddressWalletId.Raw, CommonApi.UpdateThreadResponseReactionsItemAddressWalletId diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.js index 20b3bffcf33..8fe97e32323 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseReactionsItemAddressWalletId.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseReactionsItemAddressWalletId = core.serialization.enum_([ 'magic', diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.d.ts index 64f8b0e65c9..f7a8f304c94 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseSearch: core.serialization.Schema< serializers.UpdateThreadResponseSearch.Raw, CommonApi.UpdateThreadResponseSearch diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.js index 7169e5c61d6..73da707cf74 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseSearch.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseSearch = core.serialization.undiscriminatedUnion([ core.serialization.string(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.d.ts index b3e48cbd779..e0f95aa22f2 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseThreadVersionHistoriesItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseThreadVersionHistoriesItem.Raw, CommonApi.UpdateThreadResponseThreadVersionHistoriesItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.js index f988f6e6630..63e35c8a5ea 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseThreadVersionHistoriesItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseThreadVersionHistoriesItem = core.serialization.object({ id: core.serialization.number().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.d.ts index 6c4500ba345..5326e375725 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.d.ts @@ -6,7 +6,6 @@ import * as core from '../../../../core'; import * as serializers from '../../../index'; import { UpdateThreadResponseTopicContestTopicsItem } from './UpdateThreadResponseTopicContestTopicsItem'; import { UpdateThreadResponseTopicWeightedVoting } from './UpdateThreadResponseTopicWeightedVoting'; - export declare const UpdateThreadResponseTopic: core.serialization.ObjectSchema< serializers.UpdateThreadResponseTopic.Raw, CommonApi.UpdateThreadResponseTopic diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.js index eb3488ab11d..1332e638782 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopic.js @@ -4,7 +4,6 @@ import * as core from '../../../../core'; import { UpdateThreadResponseTopicContestTopicsItem } from './UpdateThreadResponseTopicContestTopicsItem'; import { UpdateThreadResponseTopicWeightedVoting } from './UpdateThreadResponseTopicWeightedVoting'; - export const UpdateThreadResponseTopic = core.serialization.object({ id: core.serialization.number().optional(), name: core.serialization.string().optional(), diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.d.ts index 9d901865856..58a01c887e0 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseTopicContestTopicsItem: core.serialization.ObjectSchema< serializers.UpdateThreadResponseTopicContestTopicsItem.Raw, CommonApi.UpdateThreadResponseTopicContestTopicsItem diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.js index 7bdc270d790..c8f1e0279ef 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicContestTopicsItem.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseTopicContestTopicsItem = core.serialization.object({ contestAddress: core.serialization.property( diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.d.ts b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.d.ts index 82dc7c1173c..e6aed8bd1a1 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.d.ts +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.d.ts @@ -4,7 +4,6 @@ import * as CommonApi from '../../../../api/index'; import * as core from '../../../../core'; import * as serializers from '../../../index'; - export declare const UpdateThreadResponseTopicWeightedVoting: core.serialization.Schema< serializers.UpdateThreadResponseTopicWeightedVoting.Raw, CommonApi.UpdateThreadResponseTopicWeightedVoting diff --git a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.js b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.js index 3bdac68419f..cf65d48a1f1 100644 --- a/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.js +++ b/libs/api-client/src/serialization/resources/thread/types/UpdateThreadResponseTopicWeightedVoting.js @@ -2,7 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ import * as core from '../../../../core'; - export const UpdateThreadResponseTopicWeightedVoting = core.serialization.enum_( ['stake', 'erc20'], ); diff --git a/libs/api-client/src/serialization/resources/user/client/getUserActivity.d.ts b/libs/api-client/src/serialization/resources/user/client/getUserActivity.d.ts new file mode 100644 index 00000000000..a65e96ee731 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/client/getUserActivity.d.ts @@ -0,0 +1,14 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { GetUserActivityResponseItem } from '../types/GetUserActivityResponseItem'; +export declare const Response: core.serialization.Schema< + serializers.user.getUserActivity.Response.Raw, + CommonApi.GetUserActivityResponseItem[] +>; +export declare namespace Response { + type Raw = GetUserActivityResponseItem.Raw[]; +} diff --git a/libs/api-client/src/serialization/resources/user/client/getUserActivity.js b/libs/api-client/src/serialization/resources/user/client/getUserActivity.js new file mode 100644 index 00000000000..fcf4eda6484 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/client/getUserActivity.js @@ -0,0 +1,6 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { GetUserActivityResponseItem } from '../types/GetUserActivityResponseItem'; +export const Response = core.serialization.list(GetUserActivityResponseItem); diff --git a/libs/api-client/src/serialization/resources/user/client/index.d.ts b/libs/api-client/src/serialization/resources/user/client/index.d.ts new file mode 100644 index 00000000000..666df5e8788 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/client/index.d.ts @@ -0,0 +1 @@ +export * as getUserActivity from './getUserActivity'; diff --git a/libs/api-client/src/serialization/resources/user/client/index.js b/libs/api-client/src/serialization/resources/user/client/index.js new file mode 100644 index 00000000000..666df5e8788 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/client/index.js @@ -0,0 +1 @@ +export * as getUserActivity from './getUserActivity'; diff --git a/libs/api-client/src/serialization/resources/user/index.d.ts b/libs/api-client/src/serialization/resources/user/index.d.ts new file mode 100644 index 00000000000..d860d0670db --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/index.d.ts @@ -0,0 +1,2 @@ +export * from './client'; +export * from './types'; diff --git a/libs/api-client/src/serialization/resources/user/index.js b/libs/api-client/src/serialization/resources/user/index.js new file mode 100644 index 00000000000..d860d0670db --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/index.js @@ -0,0 +1,2 @@ +export * from './client'; +export * from './types'; diff --git a/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.d.ts b/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.d.ts new file mode 100644 index 00000000000..c5af9ad29b2 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.d.ts @@ -0,0 +1,15 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetNewContentResponse: core.serialization.ObjectSchema< + serializers.GetNewContentResponse.Raw, + CommonApi.GetNewContentResponse +>; +export declare namespace GetNewContentResponse { + interface Raw { + joinedCommunityIdsWithNewContent: string[]; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.js b/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.js new file mode 100644 index 00000000000..95565a916a8 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetNewContentResponse.js @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetNewContentResponse = core.serialization.object({ + joinedCommunityIdsWithNewContent: core.serialization.list( + core.serialization.string(), + ), +}); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.d.ts new file mode 100644 index 00000000000..8261cd05b20 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.d.ts @@ -0,0 +1,42 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { GetUserActivityResponseItemDiscordMeta } from './GetUserActivityResponseItemDiscordMeta'; +import { GetUserActivityResponseItemRecentCommentsItem } from './GetUserActivityResponseItemRecentCommentsItem'; +import { GetUserActivityResponseItemTopic } from './GetUserActivityResponseItemTopic'; +export declare const GetUserActivityResponseItem: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItem.Raw, + CommonApi.GetUserActivityResponseItem +>; +export declare namespace GetUserActivityResponseItem { + interface Raw { + community_id: string; + community_icon?: string | null; + id: number; + user_id: number; + user_address: string; + profile_name?: string | null; + profile_avatar?: string | null; + body: string; + title: string; + kind: string; + stage: string; + number_of_comments: number; + created_at?: string | null; + updated_at?: string | null; + deleted_at?: string | null; + locked_at?: string | null; + archived_at?: string | null; + marked_as_spam_at?: string | null; + read_only: boolean; + has_poll?: boolean | null; + discord_meta?: GetUserActivityResponseItemDiscordMeta.Raw | null; + topic: GetUserActivityResponseItemTopic.Raw; + recent_comments?: + | GetUserActivityResponseItemRecentCommentsItem.Raw[] + | null; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.js new file mode 100644 index 00000000000..0f587969dcc --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItem.js @@ -0,0 +1,82 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { GetUserActivityResponseItemDiscordMeta } from './GetUserActivityResponseItemDiscordMeta'; +import { GetUserActivityResponseItemRecentCommentsItem } from './GetUserActivityResponseItemRecentCommentsItem'; +import { GetUserActivityResponseItemTopic } from './GetUserActivityResponseItemTopic'; +export const GetUserActivityResponseItem = core.serialization.object({ + communityId: core.serialization.property( + 'community_id', + core.serialization.string(), + ), + communityIcon: core.serialization.property( + 'community_icon', + core.serialization.string().optional(), + ), + id: core.serialization.number(), + userId: core.serialization.property('user_id', core.serialization.number()), + userAddress: core.serialization.property( + 'user_address', + core.serialization.string(), + ), + profileName: core.serialization.property( + 'profile_name', + core.serialization.string().optional(), + ), + profileAvatar: core.serialization.property( + 'profile_avatar', + core.serialization.string().optional(), + ), + body: core.serialization.string(), + title: core.serialization.string(), + kind: core.serialization.string(), + stage: core.serialization.string(), + numberOfComments: core.serialization.property( + 'number_of_comments', + core.serialization.number(), + ), + createdAt: core.serialization.property( + 'created_at', + core.serialization.string().optional(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.string().optional(), + ), + deletedAt: core.serialization.property( + 'deleted_at', + core.serialization.string().optional(), + ), + lockedAt: core.serialization.property( + 'locked_at', + core.serialization.string().optional(), + ), + archivedAt: core.serialization.property( + 'archived_at', + core.serialization.string().optional(), + ), + markedAsSpamAt: core.serialization.property( + 'marked_as_spam_at', + core.serialization.string().optional(), + ), + readOnly: core.serialization.property( + 'read_only', + core.serialization.boolean(), + ), + hasPoll: core.serialization.property( + 'has_poll', + core.serialization.boolean().optional(), + ), + discordMeta: core.serialization.property( + 'discord_meta', + GetUserActivityResponseItemDiscordMeta.optional(), + ), + topic: GetUserActivityResponseItemTopic, + recentComments: core.serialization.property( + 'recent_comments', + core.serialization + .list(GetUserActivityResponseItemRecentCommentsItem) + .optional(), + ), +}); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts new file mode 100644 index 00000000000..32ed8b1343f --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.d.ts @@ -0,0 +1,18 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { GetUserActivityResponseItemDiscordMetaUser } from './GetUserActivityResponseItemDiscordMetaUser'; +export declare const GetUserActivityResponseItemDiscordMeta: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemDiscordMeta.Raw, + CommonApi.GetUserActivityResponseItemDiscordMeta +>; +export declare namespace GetUserActivityResponseItemDiscordMeta { + interface Raw { + user: GetUserActivityResponseItemDiscordMetaUser.Raw; + channel_id: string; + message_id: string; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.js new file mode 100644 index 00000000000..f6ff0c0f4c5 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMeta.js @@ -0,0 +1,18 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { GetUserActivityResponseItemDiscordMetaUser } from './GetUserActivityResponseItemDiscordMetaUser'; +export const GetUserActivityResponseItemDiscordMeta = core.serialization.object( + { + user: GetUserActivityResponseItemDiscordMetaUser, + channelId: core.serialization.property( + 'channel_id', + core.serialization.string(), + ), + messageId: core.serialization.property( + 'message_id', + core.serialization.string(), + ), + }, +); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts new file mode 100644 index 00000000000..3ac6d8ff058 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.d.ts @@ -0,0 +1,16 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetUserActivityResponseItemDiscordMetaUser: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemDiscordMetaUser.Raw, + CommonApi.GetUserActivityResponseItemDiscordMetaUser +>; +export declare namespace GetUserActivityResponseItemDiscordMetaUser { + interface Raw { + id: string; + username: string; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js new file mode 100644 index 00000000000..f5684e750d6 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemDiscordMetaUser.js @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetUserActivityResponseItemDiscordMetaUser = + core.serialization.object({ + id: core.serialization.string(), + username: core.serialization.string(), + }); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts new file mode 100644 index 00000000000..2cbbd563251 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.d.ts @@ -0,0 +1,26 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { GetUserActivityResponseItemRecentCommentsItemDiscordMeta } from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export declare const GetUserActivityResponseItemRecentCommentsItem: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemRecentCommentsItem.Raw, + CommonApi.GetUserActivityResponseItemRecentCommentsItem +>; +export declare namespace GetUserActivityResponseItemRecentCommentsItem { + interface Raw { + id: number; + address: string; + user_id?: number | null; + profile_name?: string | null; + profile_avatar?: string | null; + text: string; + created_at: string; + updated_at?: string | null; + deleted_at?: string | null; + marked_as_spam_at?: string | null; + discord_meta?: GetUserActivityResponseItemRecentCommentsItemDiscordMeta.Raw | null; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js new file mode 100644 index 00000000000..4788e971fbc --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItem.js @@ -0,0 +1,43 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { GetUserActivityResponseItemRecentCommentsItemDiscordMeta } from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export const GetUserActivityResponseItemRecentCommentsItem = + core.serialization.object({ + id: core.serialization.number(), + address: core.serialization.string(), + userId: core.serialization.property( + 'user_id', + core.serialization.number().optional(), + ), + profileName: core.serialization.property( + 'profile_name', + core.serialization.string().optional(), + ), + profileAvatar: core.serialization.property( + 'profile_avatar', + core.serialization.string().optional(), + ), + text: core.serialization.string(), + createdAt: core.serialization.property( + 'created_at', + core.serialization.string(), + ), + updatedAt: core.serialization.property( + 'updated_at', + core.serialization.string().optional(), + ), + deletedAt: core.serialization.property( + 'deleted_at', + core.serialization.string().optional(), + ), + markedAsSpamAt: core.serialization.property( + 'marked_as_spam_at', + core.serialization.string().optional(), + ), + discordMeta: core.serialization.property( + 'discord_meta', + GetUserActivityResponseItemRecentCommentsItemDiscordMeta.optional(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts new file mode 100644 index 00000000000..c777dae173d --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.d.ts @@ -0,0 +1,18 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +import { GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser } from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export declare const GetUserActivityResponseItemRecentCommentsItemDiscordMeta: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemRecentCommentsItemDiscordMeta.Raw, + CommonApi.GetUserActivityResponseItemRecentCommentsItemDiscordMeta +>; +export declare namespace GetUserActivityResponseItemRecentCommentsItemDiscordMeta { + interface Raw { + user: GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.Raw; + channel_id: string; + message_id: string; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js new file mode 100644 index 00000000000..633055d8ed1 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMeta.js @@ -0,0 +1,17 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +import { GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser } from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export const GetUserActivityResponseItemRecentCommentsItemDiscordMeta = + core.serialization.object({ + user: GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser, + channelId: core.serialization.property( + 'channel_id', + core.serialization.string(), + ), + messageId: core.serialization.property( + 'message_id', + core.serialization.string(), + ), + }); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts new file mode 100644 index 00000000000..0112ef98179 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.d.ts @@ -0,0 +1,16 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.Raw, + CommonApi.GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser +>; +export declare namespace GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser { + interface Raw { + id: string; + username: string; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js new file mode 100644 index 00000000000..90302d4076a --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser.js @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser = + core.serialization.object({ + id: core.serialization.string(), + username: core.serialization.string(), + }); diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.d.ts b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.d.ts new file mode 100644 index 00000000000..513fb2ccfb5 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.d.ts @@ -0,0 +1,17 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as CommonApi from '../../../../api/index'; +import * as core from '../../../../core'; +import * as serializers from '../../../index'; +export declare const GetUserActivityResponseItemTopic: core.serialization.ObjectSchema< + serializers.GetUserActivityResponseItemTopic.Raw, + CommonApi.GetUserActivityResponseItemTopic +>; +export declare namespace GetUserActivityResponseItemTopic { + interface Raw { + id: number; + name: string; + description: string; + } +} diff --git a/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.js b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.js new file mode 100644 index 00000000000..b9556d6ca5e --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/GetUserActivityResponseItemTopic.js @@ -0,0 +1,9 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ +import * as core from '../../../../core'; +export const GetUserActivityResponseItemTopic = core.serialization.object({ + id: core.serialization.number(), + name: core.serialization.string(), + description: core.serialization.string(), +}); diff --git a/libs/api-client/src/serialization/resources/user/types/index.d.ts b/libs/api-client/src/serialization/resources/user/types/index.d.ts new file mode 100644 index 00000000000..150b153c887 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/index.d.ts @@ -0,0 +1,8 @@ +export * from './GetNewContentResponse'; +export * from './GetUserActivityResponseItem'; +export * from './GetUserActivityResponseItemDiscordMeta'; +export * from './GetUserActivityResponseItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemRecentCommentsItem'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemTopic'; diff --git a/libs/api-client/src/serialization/resources/user/types/index.js b/libs/api-client/src/serialization/resources/user/types/index.js new file mode 100644 index 00000000000..150b153c887 --- /dev/null +++ b/libs/api-client/src/serialization/resources/user/types/index.js @@ -0,0 +1,8 @@ +export * from './GetNewContentResponse'; +export * from './GetUserActivityResponseItem'; +export * from './GetUserActivityResponseItemDiscordMeta'; +export * from './GetUserActivityResponseItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemRecentCommentsItem'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMeta'; +export * from './GetUserActivityResponseItemRecentCommentsItemDiscordMetaUser'; +export * from './GetUserActivityResponseItemTopic'; diff --git a/libs/api-client/test/index.ts b/libs/api-client/test/index.ts deleted file mode 100644 index e99ced9a5f7..00000000000 --- a/libs/api-client/test/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -// Quick and dirty api-client test -import { CommonApiClient } from '@hicommonwealth/api-client'; - -async function main() { - const client = new CommonApiClient({ - apiKey: '', - address: '', - }); - const members = await client.community.getMembers({ - communityId: 'sushi', - limit: '10', - cursor: '1', - orderBy: 'last_active', - orderDirection: 'DESC', - includeRoles: true, - }); - console.log(members); -} - -void main(); diff --git a/libs/api-client/tsconfig.build.json b/libs/api-client/tsconfig.build.json deleted file mode 100644 index ae1687b715d..00000000000 --- a/libs/api-client/tsconfig.build.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "rootDir": "src", - "outDir": "build" - }, - "include": ["src"], - "references": [] -} diff --git a/libs/api-client/tsconfig.json b/libs/api-client/tsconfig.json deleted file mode 100644 index 4f4bd883433..00000000000 --- a/libs/api-client/tsconfig.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "../tsconfig.json", - "references": [] -} diff --git a/libs/model/src/feed/GetGlobalActivity.query.ts b/libs/model/src/feed/GetGlobalActivity.query.ts index 9e544059483..f0f8deeec99 100644 --- a/libs/model/src/feed/GetGlobalActivity.query.ts +++ b/libs/model/src/feed/GetGlobalActivity.query.ts @@ -1,15 +1,13 @@ import { Query } from '@hicommonwealth/core'; import * as schemas from '@hicommonwealth/schemas'; -import { models } from '../database'; import { GlobalActivityCache } from '../globalActivityCache'; -export function GetGlobalActivity(): Query { +export function GetGlobalActivity(): Query { return { - ...schemas.ThreadFeed, + ...schemas.ActivityFeed, auth: [], secure: false, - body: async () => { - return await GlobalActivityCache.getInstance(models).getGlobalActivity(); - }, + body: async () => + await GlobalActivityCache.getInstance().getGlobalActivity(), }; } diff --git a/libs/model/src/feed/GetUserActivity.query.ts b/libs/model/src/feed/GetUserActivity.query.ts new file mode 100644 index 00000000000..3cabbca27bb --- /dev/null +++ b/libs/model/src/feed/GetUserActivity.query.ts @@ -0,0 +1,17 @@ +import { Query } from '@hicommonwealth/core'; +import * as schemas from '@hicommonwealth/schemas'; +import { getUserActivityFeed } from '../globalActivityCache'; + +export function GetUserActivity(): Query { + return { + ...schemas.ActivityFeed, + auth: [], + secure: true, + body: async ({ actor, payload }) => + await getUserActivityFeed({ + user_id: actor.user.id, + thread_limit: Math.min(payload.thread_limit ?? 50, 50), + comment_limit: Math.min(payload.comment_limit ?? 3, 5), + }), + }; +} diff --git a/libs/model/src/feed/index.ts b/libs/model/src/feed/index.ts index 33a92371b79..609ae5a4e53 100644 --- a/libs/model/src/feed/index.ts +++ b/libs/model/src/feed/index.ts @@ -1 +1,2 @@ export * from './GetGlobalActivity.query'; +export * from './GetUserActivity.query'; diff --git a/libs/model/src/globalActivityCache.ts b/libs/model/src/globalActivityCache.ts index 9fcd3b13854..60ed27a0c08 100644 --- a/libs/model/src/globalActivityCache.ts +++ b/libs/model/src/globalActivityCache.ts @@ -1,106 +1,118 @@ import { CacheNamespaces, cache, logger } from '@hicommonwealth/core'; +import { ActivityFeed, ActivityThread } from '@hicommonwealth/schemas'; import { QueryTypes } from 'sequelize'; import { v4 as uuidv4 } from 'uuid'; -import { DB } from './models/index'; - -export async function getActivityFeed(models: DB, id = 0) { - /** - * Last 50 updated threads and their comments - */ +import { z } from 'zod'; +import { models } from './database'; + +/** + * Gets last updated threads and their recent comments + * @param user_id by user id communities, 0 for global + * @param thread_limit thread limit + * @param comment_limit comment limit + */ +export async function getUserActivityFeed({ + user_id = 0, + thread_limit = 50, + comment_limit = 3, +}: Omit, 'is_global'> & { + user_id?: number; +}) { const query = ` - WITH - user_communities AS (SELECT DISTINCT community_id FROM "Addresses" WHERE user_id = :id), - top_threads AS ( - SELECT T.* - FROM "Threads" T - ${ - id > 0 - ? 'JOIN user_communities UC ON UC.community_id = T.community_id' - : '' - } - WHERE T.deleted_at IS NULL - ORDER BY T.activity_rank_date DESC NULLS LAST - LIMIT 50 - ), - ranked_threads AS ( - SELECT - T.id AS thread_id, - T.activity_rank_date, - json_build_object( - 'id', T.id, - 'body', T.body, - 'title', T.title, - 'numberOfComments', T.comment_count, - 'created_at', T.created_at, - 'updated_at', T.updated_at, - 'deleted_at', T.deleted_at, - 'locked_at', T.locked_at, - 'kind', T.kind, - 'stage', T.stage, - 'archived_at', T.archived_at, - 'read_only', T.read_only, - 'has_poll', T.has_poll, - 'marked_as_spam_at', T.marked_as_spam_at::text, - 'discord_meta', T.discord_meta, - 'profile_name', U.profile->>'name', - 'profile_avatar_url', U.profile->>'avatar_url', - 'user_id', U.id, - 'user_address', A.address, - 'topic', Tp, - 'community_id', T.community_id - ) as thread - FROM - top_threads T - JOIN "Addresses" A ON A.id = T.address_id AND A.community_id = T.community_id - JOIN "Users" U ON U.id = A.user_id - JOIN "Topics" Tp ON Tp.id = T.topic_id - ${id > 0 ? 'WHERE U.id != :id' : ''}), - recent_comments AS ( -- get the recent comments data associated with the thread - SELECT - C.thread_id as thread_id, - json_agg(json_strip_nulls(json_build_object( - 'id', C.id, - 'address', A.address, - 'text', C.text, - 'created_at', C.created_at::text, - 'updated_at', C.updated_at::text, - 'deleted_at', C.deleted_at::text, - 'marked_as_spam_at', C.marked_as_spam_at::text, - 'discord_meta', C.discord_meta, - 'profile_name', U.profile->>'name', - 'profile_avatar_url', U.profile->>'avatar_url', - 'user_id', U.id - ))) as "recentComments" - FROM ( - Select tempC.* - FROM "Comments" tempC - JOIN top_threads tt ON tt.id = tempC.thread_id - WHERE tempC.deleted_at IS NULL - ORDER BY tempC.created_at DESC - LIMIT 3 -- Optionally a prop can be added for this - ) C - JOIN "Addresses" A ON A.id = C.address_id - JOIN "Users" U ON U.id = A.user_id - GROUP BY C.thread_id +WITH +user_communities AS ( + SELECT DISTINCT community_id + FROM "Addresses" + WHERE user_id = :user_id +), +top_threads AS ( + SELECT T.* + FROM "Threads" T + ${user_id ? 'JOIN user_communities UC ON UC.community_id = T.community_id' : ''} + WHERE T.deleted_at IS NULL + ORDER BY T.activity_rank_date DESC NULLS LAST + LIMIT :thread_limit +) +SELECT + jsonb_set( + jsonb_build_object( + 'community_id', C.id, + 'community_icon', C.icon_url, + 'id', T.id, + 'user_id', U.id, + 'user_address', A.address, + 'profile_name', U.profile->>'name', + 'profile_avatar', U.profile->>'avatar_url', + 'body', T.body, + 'title', T.title, + 'kind', T.kind, + 'stage', T.stage, + 'number_of_comments', coalesce(T.comment_count, 0), + 'created_at', T.created_at::text, + 'updated_at', T.updated_at::text, + 'deleted_at', T.deleted_at::text, + 'locked_at', T.locked_at::text, + 'archived_at', T.archived_at::text, + 'marked_as_spam_at', T.marked_as_spam_at::text, + 'read_only', T.read_only, + 'has_poll', T.has_poll, + 'discord_meta', T.discord_meta, + 'topic', jsonb_build_object( + 'id', T.topic_id, + 'name', Tp.name, + 'description', Tp.description ) - SELECT - RTS."thread" as thread, - RC."recentComments" as recentComments - FROM - ranked_threads RTS - LEFT JOIN recent_comments RC ON RTS.thread_id = RC.thread_id - ORDER BY - RTS.activity_rank_date DESC NULLS LAST; + ), + '{recent_comments}', + COALESCE( + (SELECT jsonb_agg(jsonb_strip_nulls(jsonb_build_object( + 'id', C.id, + 'address', C.address, + 'user_id', C.user_id, + 'profile_name', C.profile_name, + 'profile_avatar', C.profile_avatar, + 'text', C.text, + 'created_at', C.created_at::text, + 'updated_at', C.updated_at::text, + 'deleted_at', C.deleted_at::text, + 'marked_as_spam_at', C.marked_as_spam_at::text, + 'discord_meta', C.discord_meta + )) ORDER BY C.created_at DESC) + FROM ( + SELECT + C.*, + A.address, + U.id as user_id, + U.profile->>'name' as profile_name, + U.profile->>'avatar_url' as profile_avatar, + ROW_NUMBER() OVER (PARTITION BY C.thread_id ORDER BY C.created_at DESC) AS rn + FROM "Comments" C + JOIN "Addresses" A on C.address_id = A.id + JOIN "Users" U on A.user_id = U.id + WHERE + C.thread_id = T.id + AND C.deleted_at IS NULL + ) C WHERE C.rn <= :comment_limit), '[]') + ) AS thread +FROM + top_threads T + JOIN "Communities" C ON T.community_id = C.id + JOIN "Addresses" A ON A.id = T.address_id AND A.community_id = T.community_id + JOIN "Users" U ON U.id = A.user_id + JOIN "Topics" Tp ON Tp.id = T.topic_id +ORDER BY + T.activity_rank_date DESC NULLS LAST; `; - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const threads: any = await models.sequelize.query(query, { + const threads = await models.sequelize.query<{ + thread: z.infer; + }>(query, { type: QueryTypes.SELECT, raw: true, - replacements: { id }, + replacements: { user_id, thread_limit, comment_limit }, }); - return threads; + return threads.map((t) => t.thread); } const log = logger(import.meta); @@ -111,13 +123,12 @@ export class GlobalActivityCache { private static _instance: GlobalActivityCache; constructor( - private _models: DB, private _cacheTTL: number = 60 * 5, // cache TTL in seconds ) {} - static getInstance(models: DB, cacheTTL?: number): GlobalActivityCache { + static getInstance(cacheTTL?: number): GlobalActivityCache { if (!GlobalActivityCache._instance) { - GlobalActivityCache._instance = new GlobalActivityCache(models, cacheTTL); + GlobalActivityCache._instance = new GlobalActivityCache(cacheTTL); } return GlobalActivityCache._instance; } @@ -133,13 +144,12 @@ export class GlobalActivityCache { CacheNamespaces.Activity_Cache, this._cacheKey, ); - if (!activity) { if (GlobalActivityCache._instance) { const msg = 'Failed to fetch global activity from Redis'; log.error(msg); } - return await getActivityFeed(this._models); + return await getUserActivityFeed({}); } return JSON.parse(activity); } @@ -193,7 +203,7 @@ export class GlobalActivityCache { return; } - const activity = await getActivityFeed(this._models); + const activity = await getUserActivityFeed({}); const result = await cache().setKey( CacheNamespaces.Activity_Cache, this._cacheKey, diff --git a/libs/model/src/thread/GetThreads.query.ts b/libs/model/src/thread/GetThreads.query.ts new file mode 100644 index 00000000000..dbbff8a7e9b --- /dev/null +++ b/libs/model/src/thread/GetThreads.query.ts @@ -0,0 +1,266 @@ +import { InvalidInput, Query } from '@hicommonwealth/core'; +import * as schemas from '@hicommonwealth/schemas'; +import moment from 'moment'; +import { QueryTypes } from 'sequelize'; +import { z } from 'zod'; +import { models } from '../database'; + +export function GetThreads(): Query { + return { + ...schemas.GetThreads, + auth: [], + secure: false, + body: async ({ payload }) => { + const { + community_id, + stage, + topic_id, + page, + limit, + order_by, + from_date, + to_date, + archived, + contestAddress, + status, + withXRecentComments = 0, + } = payload; + + if (stage && status) + throw new InvalidInput('Cannot provide both stage and status'); + + if (status && !contestAddress) + throw new InvalidInput( + 'Must provide contestAddress if status is provided', + ); + + // query params that bind to sql query + const _limit = limit ? Math.min(limit, 500) : 20; + const _page = page || 1; + const replacements = { + page: _page, + limit: _limit, + offset: _limit * (_page - 1) || 0, + from_date, + to_date: to_date || moment().toISOString(), + community_id, + stage, + topic_id, + contestAddress, + status, + withXRecentComments: + withXRecentComments > 10 ? 10 : withXRecentComments, // cap to 10 + }; + + // sql query parts that order results by provided query param + const orderByQueries = { + newest: 'created_at DESC', + oldest: 'created_at ASC', + mostLikes: 'reaction_count DESC', + mostComments: 'comment_count DESC', + latestActivity: 'updated_at DESC', + }; + + const contestStatus = { + active: ' AND CON.end_time > NOW()', + pastWinners: ' AND CON.end_time <= NOW()', + all: '', + }; + + const responseThreadsQuery = models.sequelize.query< + z.infer + >( + ` + WITH contest_ids as ( + SELECT DISTINCT(CA.thread_id) + FROM "Contests" CON + JOIN "ContestActions" CA ON CON.contest_id = CA.contest_id + ${ + contestAddress + ? ` WHERE CA.contest_address = '${contestAddress}' ` + : '' + } + ${contestAddress ? contestStatus[status!] || contestStatus.all : ''} + ), + top_threads AS ( + SELECT id, title, url, body, kind, stage, read_only, discord_meta, + pinned, community_id, T.created_at, updated_at, locked_at as thread_locked, links, + has_poll, last_commented_on, comment_count as "numberOfComments", + marked_as_spam_at, archived_at, topic_id, reaction_weights_sum, canvas_signed_data, + canvas_msg_id, last_edited, address_id + FROM "Threads" T + WHERE + community_id = :community_id AND + deleted_at IS NULL AND + archived_at IS ${archived ? 'NOT' : ''} NULL + ${topic_id ? ' AND topic_id = :topic_id' : ''} + ${stage ? ' AND stage = :stage' : ''} + ${from_date ? ' AND T.created_at > :from_date' : ''} + ${to_date ? ' AND T.created_at < :to_date' : ''} + ${contestAddress ? ' AND id IN (SELECT * FROM "contest_ids")' : ''} + ORDER BY pinned DESC, ${orderByQueries[order_by ?? 'newest']} + LIMIT :limit OFFSET :offset + ), thread_metadata AS ( + -- get the thread authors and their profiles + SELECT + TH.id as thread_id, + json_build_object( + 'id', T.id, + 'name', T.name, + 'description', T.description, + 'communityId', T.community_id, + 'telegram', T.telegram + ) as topic, + json_build_object( + 'id', A.id, + 'address', A.address, + 'community_id', A.community_id + ) as "Address", + U.id as user_id, + A.last_active as address_last_active, + U.profile->>'avatar_url' as avatar_url, + U.profile->>'name' as profile_name + FROM top_threads TH JOIN "Topics" T ON TH.topic_id = T.id + LEFT JOIN "Addresses" A ON TH.address_id = A.id + LEFT JOIN "Users" U ON A.user_id = U.id + ), collaborator_data AS ( + -- get the thread collaborators and their profiles + SELECT + TT.id as thread_id, + CASE WHEN max(A.id) IS NOT NULL THEN + json_agg(json_strip_nulls(json_build_object( + 'address', A.address, + 'community_id', A.community_id, + 'User', json_build_object( + 'id', editor_profiles.id, + 'profile', json_build_object( + 'userId', editor_profiles.id, + 'name', editor_profiles.profile->>'name', + 'address', A.address, + 'lastActive', A.last_active::text, + 'avatarUrl', editor_profiles.profile->>'avatar_url' + ) + ) + ))) + ELSE '[]'::json + END AS collaborators + FROM top_threads TT LEFT JOIN "Collaborations" AS C ON TT.id = C.thread_id + LEFT JOIN "Addresses" A ON C.address_id = A.id + LEFT JOIN "Users" editor_profiles ON A.user_id = editor_profiles.id + GROUP BY TT.id + ), reaction_data AS ( + -- get the thread reactions and the address/profile of the user who reacted + SELECT + TT.id as thread_id, + json_agg(json_strip_nulls(json_build_object( + 'id', R.id, + 'type', R.reaction, + 'address', A.address, + 'updated_at', R.updated_at::text, + 'voting_weight', R.calculated_voting_weight, + 'profile_name', U.profile->>'name', + 'avatar_url', U.profile->>'avatar_url', + 'last_active', A.last_active::text + ))) as "associatedReactions" + FROM "Reactions" R JOIN top_threads TT ON TT.id = R.thread_id + JOIN "Addresses" A ON A.id = R.address_id + JOIN "Users" U ON U.id = A.user_id + -- where clause doesn't change query result but forces DB to use the correct indexes + WHERE R.thread_id = TT.id + GROUP BY TT.id + ), contest_data AS ( + -- get the contest data associated with the thread + SELECT + TT.id as thread_id, + json_agg(json_strip_nulls(json_build_object( + 'contest_id', CON.contest_id, + 'contest_name', CM.name, + 'contest_cancelled', CM.cancelled, + 'contest_interval', CM.interval, + 'contest_address', CON.contest_address, + 'score', CON.score, + 'thread_id', TT.id, + 'content_id', CA.content_id, + 'start_time', CON.start_time, + 'end_time', CON.end_time + ))) as "associatedContests" + FROM "Contests" CON + JOIN "ContestManagers" CM ON CM.contest_address = CON.contest_address + JOIN "ContestActions" CA ON CON.contest_id = CA.contest_id + AND CON.contest_address = CA.contest_address AND CA.action = 'upvoted' + JOIN top_threads TT ON TT.id = CA.thread_id + GROUP BY TT.id + )${ + withXRecentComments + ? `, recent_comments AS ( + -- get the recent comments data associated with the thread + SELECT + TT.id as thread_id, + json_agg(json_strip_nulls(json_build_object( + 'id', COM.id, + 'address', A.address, + 'text', COM.text, + 'created_at', COM.created_at::text, + 'updated_at', COM.updated_at::text, + 'deleted_at', COM.deleted_at::text, + 'marked_as_spam_at', COM.marked_as_spam_at::text, + 'discord_meta', COM.discord_meta, + 'profile_name', U.profile->>'name', + 'profile_avatar', U.profile->>'avatar_url', + 'user_id', U.id + ))) as "recentComments" + FROM ( + Select tempC.* FROM "Comments" tempC + JOIN top_threads tempTT ON tempTT.id = tempC.thread_id + WHERE deleted_at IS NULL + ORDER BY created_at DESC + LIMIT :withXRecentComments + ) COM + JOIN top_threads TT ON TT.id = COM.thread_id + JOIN "Addresses" A ON A.id = COM.address_id + JOIN "Users" U ON U.id = A.user_id + GROUP BY TT.id + )` + : '' + } + SELECT + TT.*, TM.*, CD.*, RD.*, COND.* + ${withXRecentComments ? `, RC.*` : ''} + FROM top_threads TT + LEFT JOIN thread_metadata TM ON TT.id = TM.thread_id + LEFT JOIN collaborator_data CD ON TT.id = CD.thread_id + LEFT JOIN reaction_data RD ON TT.id = RD.thread_id + LEFT JOIN contest_data COND ON TT.id = COND.thread_id + ${ + withXRecentComments + ? `LEFT JOIN recent_comments RC ON TT.id = RC.thread_id;` + : '' + } + `, + { + replacements, + type: QueryTypes.SELECT, + }, + ); + + const numVotingThreadsQuery = models.Thread.count({ + where: { + community_id, + stage: 'voting', + }, + }); + + const [threads, numVotingThreads] = await Promise.all([ + responseThreadsQuery, + numVotingThreadsQuery, + ]); + + return { + limit: replacements.limit, + page: replacements.page, + threads, + numVotingThreads, + }; + }, + }; +} diff --git a/libs/model/src/thread/index.ts b/libs/model/src/thread/index.ts index 12dce0fb2fd..b29d9c54a60 100644 --- a/libs/model/src/thread/index.ts +++ b/libs/model/src/thread/index.ts @@ -2,4 +2,5 @@ export * from './CreateThread.command'; export * from './CreateThreadReaction.command'; export * from './DeleteThread.command'; export * from './GetThread.query'; +export * from './GetThreads.query'; export * from './UpdateThread.command'; diff --git a/libs/schemas/src/queries/feed.schemas.ts b/libs/schemas/src/queries/feed.schemas.ts index 8ae1a86583a..ce3daefbac9 100644 --- a/libs/schemas/src/queries/feed.schemas.ts +++ b/libs/schemas/src/queries/feed.schemas.ts @@ -1,28 +1,56 @@ import { z } from 'zod'; -import { PG_INT } from '../utils'; +import { DiscordMetaSchema, PG_INT } from '../utils'; -export const ThreadFeedRecord = z.object({ - thread_id: PG_INT, - last_activity: z.coerce.string(), - notification_data: z.string(), - category_id: z.string(), - comment_count: PG_INT, - commenters: z.array( - z.object({ - Addresses: z.array( - z.object({ - id: PG_INT, - address: z.string(), - community_id: z.string(), - }), - ), - }), - ), +export const ActivityComment = z.object({ + id: z.number(), + address: z.string(), + user_id: z.number().nullish(), + profile_name: z.string().nullish(), + profile_avatar: z.string().nullish(), + text: z.string(), + created_at: z.string(), + updated_at: z.string().nullish(), + deleted_at: z.string().nullish(), + marked_as_spam_at: z.string().nullish(), + discord_meta: DiscordMetaSchema.nullish(), }); -export const ThreadFeed = { - input: z.object({}), - output: z.array(ThreadFeedRecord), +export const ActivityThread = z.object({ + community_id: z.string(), + community_icon: z.string().nullish(), + id: z.number(), + user_id: z.number(), + user_address: z.string(), + profile_name: z.string().nullish(), + profile_avatar: z.string().nullish(), + body: z.string(), + title: z.string(), + kind: z.string(), + stage: z.string(), + number_of_comments: z.number(), + created_at: z.string().nullish(), + updated_at: z.string().nullish(), + deleted_at: z.string().nullish(), + locked_at: z.string().nullish(), + archived_at: z.string().nullish(), + marked_as_spam_at: z.string().nullish(), + read_only: z.boolean(), + has_poll: z.boolean().nullish(), + discord_meta: DiscordMetaSchema.nullish(), + topic: z.object({ + id: z.number(), + name: z.string(), + description: z.string(), + }), + recent_comments: z.array(ActivityComment).nullish(), +}); + +export const ActivityFeed = { + input: z.object({ + thread_limit: z.number().optional(), + comment_limit: z.number().optional(), + }), + output: z.array(ActivityThread), }; export const ChainFeedRecord = z.object({ diff --git a/libs/schemas/src/queries/thread.schemas.ts b/libs/schemas/src/queries/thread.schemas.ts index 2fa4e3c6880..c67d3defff4 100644 --- a/libs/schemas/src/queries/thread.schemas.ts +++ b/libs/schemas/src/queries/thread.schemas.ts @@ -1,4 +1,5 @@ import { z } from 'zod'; +import { Thread } from '../entities'; import { DiscordMetaSchema, linksSchema, @@ -90,3 +91,51 @@ export const GetBulkThreads = { threads: z.array(BulkThread), }), }; + +export const MappedReaction = z.object({ + id: z.number(), + type: z.literal('like'), + address: z.string(), + updated_at: z.date(), + voting_weight: z.number(), + profile_name: z.string().optional(), + avatar_url: z.string().optional(), + last_active: z.date().optional(), +}); + +export const MappedThread = Thread.extend({ + associatedReactions: z.array(MappedReaction), +}); + +export const GetThreadsStatus = z.enum(['active', 'pastWinners', 'all']); +export const GetThreadsOrderBy = z.enum([ + 'newest', + 'oldest', + 'mostLikes', + 'mostComments', + 'latestActivity', +]); + +export const GetThreads = { + input: z.object({ + community_id: z.string(), + page: z.number().optional(), + limit: z.number().optional(), + stage: z.string().optional(), + topic_id: PG_INT.optional(), + includePinnedThreads: z.boolean().optional(), + order_by: GetThreadsOrderBy.optional(), + from_date: z.string().optional(), + to_date: z.string().optional(), + archived: z.boolean().optional(), + contestAddress: z.string().optional(), + status: GetThreadsStatus.optional(), + withXRecentComments: z.number().optional(), + }), + output: z.object({ + page: z.number(), + limit: z.number(), + numVotingThreads: z.number(), + threads: z.array(MappedThread), + }), +}; diff --git a/packages/commonwealth/client/scripts/models/Thread.ts b/packages/commonwealth/client/scripts/models/Thread.ts index f71aae713b4..89f9fce5c3d 100644 --- a/packages/commonwealth/client/scripts/models/Thread.ts +++ b/packages/commonwealth/client/scripts/models/Thread.ts @@ -191,7 +191,7 @@ export type AssociatedContest = { contest_interval: number; }; -type RecentComment = { +export type RecentComment = { id: number; address: string; text: string; @@ -201,7 +201,7 @@ type RecentComment = { deleted_at?: string; discord_meta?: string; profile_name?: string; - profile_avatar_url?: string; + profile_avatar?: string; user_id: string; }; @@ -445,7 +445,7 @@ export class Thread implements IUniqueId { User: { profile: { name: rc?.profile_name, - avatar_url: rc?.profile_avatar_url, + avatar_url: rc?.profile_avatar, }, }, }, diff --git a/packages/commonwealth/client/scripts/state/api/config.ts b/packages/commonwealth/client/scripts/state/api/config.ts index e5f90d699a1..40e91f003dd 100644 --- a/packages/commonwealth/client/scripts/state/api/config.ts +++ b/packages/commonwealth/client/scripts/state/api/config.ts @@ -36,8 +36,6 @@ export const ApiEndpoints = { searchProfiles: (searchTerm: string) => `/profiles?search=${searchTerm}`, searchChains: (searchTerm: string) => `/communities?search=${searchTerm}`, VIEW_COUNT: '/viewCount', - FETCH_USER_ACTIVITY: '/viewUserActivity', - FETCH_GLOBAL_ACTIVITY: '/viewGlobalActivity', }; export const ContractMethods = { diff --git a/packages/commonwealth/client/scripts/state/api/feeds/fetchGlobalActivity.ts b/packages/commonwealth/client/scripts/state/api/feeds/fetchGlobalActivity.ts deleted file mode 100644 index 1a56800b5de..00000000000 --- a/packages/commonwealth/client/scripts/state/api/feeds/fetchGlobalActivity.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { useQuery } from '@tanstack/react-query'; -import axios from 'axios'; -import Thread from 'models/Thread'; -import { ApiEndpoints, SERVER_URL } from 'state/api/config'; -import { formatActivityResponse } from './util'; - -const USER_ACTIVITY_STALE_TIME = 5 * 60 * 1_000; // 5 minutes (backend caches for 5 minutes as well) -const USER_ACTIVITY_CACHE_TIME = 5 * 60 * 1_000; // 5 minutes - -const fetchGlobalActivity = async (): Promise => { - const response = await axios.post( - `${SERVER_URL}/${ApiEndpoints.FETCH_GLOBAL_ACTIVITY}`, - ); - - return formatActivityResponse(response); -}; - -const useFetchGlobalActivityQuery = ({ - apiEnabled, -}: { - apiEnabled: boolean; -}) => { - return useQuery({ - queryKey: [ApiEndpoints.FETCH_GLOBAL_ACTIVITY], - queryFn: () => fetchGlobalActivity(), - staleTime: USER_ACTIVITY_STALE_TIME, - cacheTime: USER_ACTIVITY_CACHE_TIME, - enabled: apiEnabled, - }); -}; - -export default useFetchGlobalActivityQuery; diff --git a/packages/commonwealth/client/scripts/state/api/feeds/fetchUserActivity.ts b/packages/commonwealth/client/scripts/state/api/feeds/fetchUserActivity.ts index d3ee5af7edd..d1cfd6cf701 100644 --- a/packages/commonwealth/client/scripts/state/api/feeds/fetchUserActivity.ts +++ b/packages/commonwealth/client/scripts/state/api/feeds/fetchUserActivity.ts @@ -1,32 +1,31 @@ -import { useQuery } from '@tanstack/react-query'; -import axios from 'axios'; -import Thread from 'models/Thread'; -import { ApiEndpoints, SERVER_URL } from 'state/api/config'; -import { userStore } from 'state/ui/user'; -import { formatActivityResponse } from './util'; +import { trpc } from 'client/scripts/utils/trpcClient'; const USER_ACTIVITY_STALE_TIME = 60 * 1_000; // 1 minute const USER_ACTIVITY_CACHE_TIME = 5 * 60 * 1_000; // 5 minutes +const GLOBAL_ACTIVITY_STALE_TIME = 5 * 60 * 1_000; // 5 minutes (backend caches for 5 minutes as well) -const fetchUserActivity = async (): Promise => { - const response = await axios.post( - `${SERVER_URL}/${ApiEndpoints.FETCH_USER_ACTIVITY}`, +export const useFetchGlobalActivityQuery = () => { + return trpc.feed.getGlobalActivity.useQuery( { - jwt: userStore.getState().jwt, + thread_limit: 50, + comment_limit: 3, + }, + { + staleTime: GLOBAL_ACTIVITY_STALE_TIME, + cacheTime: USER_ACTIVITY_CACHE_TIME, }, ); - - return formatActivityResponse(response); }; -const useFetchUserActivityQuery = ({ apiEnabled }: { apiEnabled: boolean }) => { - return useQuery({ - queryKey: [ApiEndpoints.FETCH_USER_ACTIVITY], - queryFn: () => fetchUserActivity(), - staleTime: USER_ACTIVITY_STALE_TIME, - cacheTime: USER_ACTIVITY_CACHE_TIME, - enabled: apiEnabled, - }); +export const useFetchUserActivityQuery = () => { + return trpc.feed.getUserActivity.useQuery( + { + thread_limit: 50, + comment_limit: 3, + }, + { + staleTime: USER_ACTIVITY_STALE_TIME, + cacheTime: USER_ACTIVITY_CACHE_TIME, + }, + ); }; - -export default useFetchUserActivityQuery; diff --git a/packages/commonwealth/client/scripts/state/api/feeds/index.ts b/packages/commonwealth/client/scripts/state/api/feeds/index.ts deleted file mode 100644 index ec56932b303..00000000000 --- a/packages/commonwealth/client/scripts/state/api/feeds/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import useFetchGlobalActivityQuery from './fetchGlobalActivity'; -import useFetchUserActivityQuery from './fetchUserActivity'; - -export { useFetchGlobalActivityQuery, useFetchUserActivityQuery }; diff --git a/packages/commonwealth/client/scripts/state/api/feeds/util.ts b/packages/commonwealth/client/scripts/state/api/feeds/util.ts index 47e7ef5b5f3..b1f8470e7cf 100644 --- a/packages/commonwealth/client/scripts/state/api/feeds/util.ts +++ b/packages/commonwealth/client/scripts/state/api/feeds/util.ts @@ -21,7 +21,7 @@ type ActivityResponse = { marked_as_spam_at?: string; discord_meta?: string; profile_name: string; - profile_avatar_url?: string; + profile_avatar?: string; user_id: number; user_address: string; topic: Topic; @@ -37,7 +37,7 @@ export function formatActivityResponse(response: AxiosResponse) { new Thread({ id: x.thread.id, // @ts-expect-error - avatar_url: x.thread.profile_avatar_url, + avatar_url: x.thread.profile_avatar, profile_name: x.thread.profile_name, community_id: x.thread.community_id, kind: x.thread.kind, diff --git a/packages/commonwealth/client/scripts/views/components/NewThreadFormLegacy/NewThreadForm.tsx b/packages/commonwealth/client/scripts/views/components/NewThreadFormLegacy/NewThreadForm.tsx index 1c91c8259b6..d13e9513a62 100644 --- a/packages/commonwealth/client/scripts/views/components/NewThreadFormLegacy/NewThreadForm.tsx +++ b/packages/commonwealth/client/scripts/views/components/NewThreadFormLegacy/NewThreadForm.tsx @@ -143,7 +143,6 @@ export const NewThreadForm = () => { ); const isActionAllowedInGatedTopic = !!(memberships || []).find( (membership) => - threadTopic && threadTopic?.id && membership.topicIds.includes(threadTopic?.id) && membership.isAllowed, diff --git a/packages/commonwealth/client/scripts/views/components/Profile/ProfileActivityContent.tsx b/packages/commonwealth/client/scripts/views/components/Profile/ProfileActivityContent.tsx index 071bc67b82c..553a51cc2d6 100644 --- a/packages/commonwealth/client/scripts/views/components/Profile/ProfileActivityContent.tsx +++ b/packages/commonwealth/client/scripts/views/components/Profile/ProfileActivityContent.tsx @@ -2,10 +2,10 @@ import React from 'react'; import 'components/Profile/Profile.scss'; -import { CWText } from '../component_kit/cw_text'; import type Thread from 'models/Thread'; -import ProfileActivityRow from './ProfileActivityRow'; +import { CWText } from '../component_kit/cw_text'; import type { CommentWithAssociatedThread } from './ProfileActivity'; +import ProfileActivityRow from './ProfileActivityRow'; enum ProfileActivityType { Addresses, diff --git a/packages/commonwealth/client/scripts/views/components/feed.tsx b/packages/commonwealth/client/scripts/views/components/feed.tsx index 43416e4208e..3784fe063c3 100644 --- a/packages/commonwealth/client/scripts/views/components/feed.tsx +++ b/packages/commonwealth/client/scripts/views/components/feed.tsx @@ -3,25 +3,28 @@ import { Virtuoso } from 'react-virtuoso'; import 'components/feed.scss'; -import { PageNotFound } from '../pages/404'; -import { UserDashboardRowSkeleton } from '../pages/user_dashboard/user_dashboard_row'; - +import { ActivityComment, ActivityThread } from '@hicommonwealth/schemas'; import { slugify } from '@hicommonwealth/shared'; +import { Thread, type RecentComment } from 'client/scripts/models/Thread'; +import Topic from 'client/scripts/models/Topic'; +import { ThreadKind, ThreadStage } from 'client/scripts/models/types'; +import { + useFetchGlobalActivityQuery, + useFetchUserActivityQuery, +} from 'client/scripts/state/api/feeds/fetchUserActivity'; import { getThreadActionTooltipText } from 'helpers/threads'; import { getProposalUrlPath } from 'identifiers'; -import Thread from 'models/Thread'; import { useCommonNavigate } from 'navigation/helpers'; import { useGetCommunityByIdQuery } from 'state/api/communities'; import { useFetchCustomDomainQuery } from 'state/api/configuration'; -import { - useFetchGlobalActivityQuery, - useFetchUserActivityQuery, -} from 'state/api/feeds'; import { useRefreshMembershipQuery } from 'state/api/groups'; import useUserStore from 'state/ui/user'; import Permissions from 'utils/Permissions'; import { DashboardViews } from 'views/pages/user_dashboard'; +import { z } from 'zod'; +import { PageNotFound } from '../pages/404'; import { ThreadCard } from '../pages/discussions/ThreadCard'; +import { UserDashboardRowSkeleton } from '../pages/user_dashboard/user_dashboard_row'; type FeedProps = { dashboardView: DashboardViews; @@ -117,26 +120,78 @@ const FeedThread = ({ thread }: { thread: Thread }) => { ); }; +// TODO: Reconcile client state with query schemas +function mapThread(thread: z.infer): Thread { + return new Thread({ + Address: { + address: thread.user_address, + community_id: thread.community_id, + }, + title: thread.title, + id: thread.id, + created_at: thread.created_at ?? '', + updated_at: thread.updated_at ?? thread.created_at ?? '', + topic: new Topic({ + community_id: thread.community_id, + id: thread.topic.id, + name: thread.topic.name, + description: thread.topic.description, + featured_in_sidebar: false, + featured_in_new_post: false, + group_ids: [], + active_contest_managers: [], + total_threads: 0, + }), + kind: thread.kind as ThreadKind, + stage: thread.stage as ThreadStage, + ThreadVersionHistories: [], + community_id: thread.community_id, + read_only: thread.read_only, + body: thread.body, + locked_at: thread.locked_at ?? '', + archived_at: thread.archived_at ?? '', + has_poll: thread.has_poll ?? false, + marked_as_spam_at: thread.marked_as_spam_at ?? '', + discord_meta: thread.discord_meta, + profile_name: thread.profile_name ?? '', + avatar_url: thread.profile_avatar ?? '', + user_id: thread.user_id, + userId: thread.user_id, + last_edited: thread.updated_at ?? '', + last_commented_on: '', + reaction_weights_sum: 0, + address_last_active: '', + ContestActions: [], + numberOfComments: thread.number_of_comments, + recentComments: + thread.recent_comments?.map( + (c: z.infer) => + ({ + id: c.id, + address: c.address, + user_id: c.user_id ?? '', + created_at: c.created_at, + updated_at: c.updated_at, + profile_avatar: c.profile_avatar, + profile_name: c.profile_name, + text: c.text, + }) as RecentComment, + ) ?? [], + }); +} + // eslint-disable-next-line react/no-multi-comp export const Feed = ({ dashboardView, noFeedMessage, customScrollParent, }: FeedProps) => { - const userActivityRes = useFetchUserActivityQuery({ - apiEnabled: DashboardViews.ForYou === dashboardView, - }); - - const globalActivityRes = useFetchGlobalActivityQuery({ - apiEnabled: DashboardViews.Global === dashboardView, - }); + const userFeed = useFetchUserActivityQuery(); + const globalFeed = useFetchGlobalActivityQuery(); - const queryData = (() => { - if (DashboardViews.Global === dashboardView) return globalActivityRes; - else return userActivityRes; - })(); + const feed = dashboardView === DashboardViews.Global ? globalFeed : userFeed; - if (queryData?.isLoading) { + if (feed.isLoading) { return (
; } - if (queryData?.data?.length === 0) { + if (feed.data.length === 0) { return (
{noFeedMessage}
@@ -165,10 +220,10 @@ export const Feed = ({
( - + )} />
diff --git a/packages/commonwealth/client/scripts/views/pages/user_dashboard/index.tsx b/packages/commonwealth/client/scripts/views/pages/user_dashboard/index.tsx index e7193c9af3c..20c05b639e9 100644 --- a/packages/commonwealth/client/scripts/views/pages/user_dashboard/index.tsx +++ b/packages/commonwealth/client/scripts/views/pages/user_dashboard/index.tsx @@ -123,24 +123,11 @@ const UserDashboard = ({ type }: UserDashboardProps) => { />
- <> - {activePage === DashboardViews.ForYou && ( - - customScrollParent={scrollElement} - /> - )} - {activePage === DashboardViews.Global && ( - - customScrollParent={scrollElement} - /> - )} - +
{isWindowExtraSmall ? ( <> diff --git a/packages/commonwealth/main.ts b/packages/commonwealth/main.ts index 9161d2afdc2..0aacd89bcfb 100644 --- a/packages/commonwealth/main.ts +++ b/packages/commonwealth/main.ts @@ -154,7 +154,7 @@ export async function main( setupPassport(db); // TODO: decouple as global singleton - const globalActivityCache = GlobalActivityCache.getInstance(db); + const globalActivityCache = GlobalActivityCache.getInstance(); // initialize async to avoid blocking startup if (!noGlobalActivityCache) globalActivityCache.start(); diff --git a/packages/commonwealth/server/api/external-router-middleware.ts b/packages/commonwealth/server/api/external-router-middleware.ts index 8c6cffab838..932edbf54f7 100644 --- a/packages/commonwealth/server/api/external-router-middleware.ts +++ b/packages/commonwealth/server/api/external-router-middleware.ts @@ -24,7 +24,6 @@ export async function apiKeyAuthMiddleware( if (req.path.startsWith('/docs/') || req.path === '/openapi.json') { return next(); } - const apiKey = req.headers['x-api-key']; if (!apiKey) throw new AppError('Unauthorized', 401); if (typeof apiKey !== 'string') throw new AppError('Unauthorized', 401); @@ -39,6 +38,7 @@ export async function apiKeyAuthMiddleware( CacheNamespaces.Api_key_auth, addressHeader.toLowerCase(), ); + if (cacheRes) { const cachedAuth: { hashedApiKey: string; @@ -74,6 +74,7 @@ export async function apiKeyAuthMiddleware( }, ], }); + if (!addressInstance || !addressInstance.user_id) throw new AppError('Unauthorized', 401); const address = addressInstance.get({ plain: true })!; diff --git a/packages/commonwealth/server/api/external-router.ts b/packages/commonwealth/server/api/external-router.ts index fd7f70cf862..1a10e9033bf 100644 --- a/packages/commonwealth/server/api/external-router.ts +++ b/packages/commonwealth/server/api/external-router.ts @@ -1,5 +1,5 @@ import { express, trpc } from '@hicommonwealth/adapters'; -import { Comment, Community } from '@hicommonwealth/model'; +import { Comment, Community, Feed } from '@hicommonwealth/model'; import cors from 'cors'; import { Router } from 'express'; import passport from 'passport'; @@ -11,6 +11,7 @@ import { apiKeyAuthMiddleware, } from './external-router-middleware'; import * as thread from './threads'; +import * as user from './user'; const { createCommunity, @@ -32,8 +33,12 @@ const { } = thread.trpcRouter; const { createComment, updateComment, deleteComment, createCommentReaction } = comment.trpcRouter; +const { getNewContent } = user.trpcRouter; const api = { + getGlobalActivity: trpc.query(Feed.GetGlobalActivity, trpc.Tag.User, true), + getUserActivity: trpc.query(Feed.GetUserActivity, trpc.Tag.User, true), + getNewContent, getCommunities: trpc.query( Community.GetCommunities, trpc.Tag.Community, @@ -64,7 +69,14 @@ const api = { const PATH = '/api/v1'; const router = Router(); -router.use(cors(), express.statsMiddleware); +router.use( + cors({ + origin: '*', + methods: ['GET', 'POST'], + allowedHeaders: ['Content-Type', 'api-key', 'address'], + }), + express.statsMiddleware, +); // =============================================================================== /** @@ -88,7 +100,7 @@ const trpcRouter = trpc.router(api); trpc.useOAS(router, trpcRouter, { title: 'Common API', path: PATH, - version: '0.0.1', + version: '1.0.0', }); export { PATH, router }; diff --git a/packages/commonwealth/server/api/feed.ts b/packages/commonwealth/server/api/feed.ts index 00abd584221..f97c222894e 100644 --- a/packages/commonwealth/server/api/feed.ts +++ b/packages/commonwealth/server/api/feed.ts @@ -3,4 +3,5 @@ import { Feed } from '@hicommonwealth/model'; export const trpcRouter = trpc.router({ getGlobalActivity: trpc.query(Feed.GetGlobalActivity, trpc.Tag.User), + getUserActivity: trpc.query(Feed.GetUserActivity, trpc.Tag.User), }); diff --git a/packages/commonwealth/server/api/threads.ts b/packages/commonwealth/server/api/threads.ts index b6446979c78..db78c142144 100644 --- a/packages/commonwealth/server/api/threads.ts +++ b/packages/commonwealth/server/api/threads.ts @@ -1,10 +1,5 @@ import { trpc } from '@hicommonwealth/adapters'; -import { - GlobalActivityCache, - Reaction, - Thread, - models, -} from '@hicommonwealth/model'; +import { GlobalActivityCache, Reaction, Thread } from '@hicommonwealth/model'; import { MixpanelCommunityInteractionEvent } from '../../shared/analytics/types'; import { applyCanvasSignedDataMiddleware } from '../federation'; @@ -44,7 +39,7 @@ export const trpcRouter = trpc.router({ async (_, output) => { // Using track output middleware to invalidate gac // TODO: Generalize output middleware to cover (analytics, gac invalidation, canvas, etc) - const gac = GlobalActivityCache.getInstance(models); + const gac = GlobalActivityCache.getInstance(); gac && (await gac.deleteActivityFromCache(output.thread_id)); return undefined; }, diff --git a/packages/commonwealth/server/controllers/server_threads_controller.ts b/packages/commonwealth/server/controllers/server_threads_controller.ts index 40777c15a27..d979eb7cadb 100644 --- a/packages/commonwealth/server/controllers/server_threads_controller.ts +++ b/packages/commonwealth/server/controllers/server_threads_controller.ts @@ -14,11 +14,6 @@ import { GetActiveThreadsResult, __getActiveThreads, } from './server_threads_methods/get_active_threads'; -import { - GetBulkThreadsOptions, - GetBulkThreadsResult, - __getBulkThreads, -} from './server_threads_methods/get_bulk_threads'; import { GetThreadPollsOptions, GetThreadPollsResult, @@ -65,12 +60,6 @@ export class ServerThreadsController { return __searchThreads.call(this, options); } - async getBulkThreads( - options: GetBulkThreadsOptions, - ): Promise { - return __getBulkThreads.call(this, options); - } - async countThreads( options: CountThreadsOptions, ): Promise { diff --git a/packages/commonwealth/server/controllers/server_threads_methods/get_active_threads.ts b/packages/commonwealth/server/controllers/server_threads_methods/get_active_threads.ts index bbeef051d2c..55d7150a744 100644 --- a/packages/commonwealth/server/controllers/server_threads_methods/get_active_threads.ts +++ b/packages/commonwealth/server/controllers/server_threads_methods/get_active_threads.ts @@ -125,7 +125,7 @@ export async function __getActiveThreads( if (temp.Address) { temp.user_id = temp.Address.User?.id; temp.profile_name = temp.Address.User?.profile.name; - temp.profile_avatar_url = temp.Address.User?.profile.avatar_url; + temp.profile_avatar = temp.Address.User?.profile.avatar_url; delete temp.Address; } return temp; diff --git a/packages/commonwealth/server/controllers/server_threads_methods/get_bulk_threads.ts b/packages/commonwealth/server/controllers/server_threads_methods/get_bulk_threads.ts deleted file mode 100644 index a7a34616e2c..00000000000 --- a/packages/commonwealth/server/controllers/server_threads_methods/get_bulk_threads.ts +++ /dev/null @@ -1,305 +0,0 @@ -import { AppError, ServerError } from '@hicommonwealth/core'; -import { ThreadAttributes } from '@hicommonwealth/model'; -import moment from 'moment'; -import { QueryTypes } from 'sequelize'; -import { ServerThreadsController } from '../server_threads_controller'; - -type ReactionType = 'like'; - -export type GetBulkThreadsOptions = { - communityId: string; - stage: string; - topicId: number; - includePinnedThreads: boolean; - page: number; - limit: number; - orderBy: string; - fromDate: string; - toDate: string; - archived: boolean; - contestAddress: string; - status: string; - withXRecentComments?: number; -}; - -export type AssociatedReaction = { - id: number | string; - type: ReactionType; - address: string; - updated_at: string; - voting_weight: number; - profile_name?: string; - avatar_url?: string; - last_active?: string; -}; - -type ThreadsQuery = ThreadAttributes & AssociatedReaction[]; - -export type GetBulkThreadsResult = { - numVotingThreads: number; - threads: ThreadsQuery[]; - limit: number; - page: number; -}; - -export async function __getBulkThreads( - this: ServerThreadsController, - { - communityId, - stage, - topicId, - page, - limit, - orderBy, - fromDate, - toDate, - archived, - contestAddress, - status, - withXRecentComments = 0, - }: GetBulkThreadsOptions, -): Promise { - if (stage && status) { - throw new AppError('Cannot provide both stage and status'); - } - - if (status && !contestAddress) { - throw new AppError('Must provide contestAddress if status is provided'); - } - - // query params that bind to sql query - const replacements = (() => { - const _limit = limit ? Math.min(limit, 500) : 20; - const _page = page || 1; - const _offset = _limit * (_page - 1) || 0; - const _to_date = toDate || moment().toISOString(); - - return { - fromDate, - toDate: _to_date, - page: _page, - limit: _limit, - offset: _offset, - communityId, - stage, - topicId, - contestAddress, - status, - withXRecentComments: withXRecentComments > 10 ? 10 : withXRecentComments, // cap to 10 - }; - })(); - - // sql query parts that order results by provided query param - const orderByQueries = { - newest: 'created_at DESC', - oldest: 'created_at ASC', - mostLikes: 'reaction_count DESC', - mostComments: 'comment_count DESC', - latestActivity: 'updated_at DESC', - }; - - const contestStatus = { - active: ' AND CON.end_time > NOW()', - pastWinners: ' AND CON.end_time <= NOW()', - all: '', - }; - - const responseThreadsQuery = this.models.sequelize.query( - ` - WITH contest_ids as ( - SELECT DISTINCT(CA.thread_id) - FROM "Contests" CON - JOIN "ContestActions" CA ON CON.contest_id = CA.contest_id - ${ - contestAddress - ? ` WHERE CA.contest_address = '${contestAddress}' ` - : '' - } - ${contestAddress ? contestStatus[status] || contestStatus.all : ''} - ), - top_threads AS ( - SELECT id, title, url, body, kind, stage, read_only, discord_meta, - pinned, community_id, T.created_at, updated_at, locked_at as thread_locked, links, - has_poll, last_commented_on, comment_count as "numberOfComments", - marked_as_spam_at, archived_at, topic_id, reaction_weights_sum, canvas_signed_data, - canvas_msg_id, last_edited, address_id - FROM "Threads" T - WHERE - community_id = :communityId AND - deleted_at IS NULL AND - archived_at IS ${archived ? 'NOT' : ''} NULL - ${topicId ? ' AND topic_id = :topicId' : ''} - ${stage ? ' AND stage = :stage' : ''} - ${fromDate ? ' AND T.created_at > :fromDate' : ''} - ${toDate ? ' AND T.created_at < :toDate' : ''} - ${contestAddress ? ' AND id IN (SELECT * FROM "contest_ids")' : ''} - ORDER BY pinned DESC, ${orderByQueries[orderBy] ?? 'T.created_at DESC'} - LIMIT :limit OFFSET :offset - ), thread_metadata AS ( - -- get the thread authors and their profiles - SELECT - TH.id as thread_id, - json_build_object( - 'id', T.id, - 'name', T.name, - 'description', T.description, - 'communityId', T.community_id, - 'telegram', T.telegram - ) as topic, - json_build_object( - 'id', A.id, - 'address', A.address, - 'community_id', A.community_id - ) as "Address", - U.id as user_id, - A.last_active as address_last_active, - U.profile->>'avatar_url' as avatar_url, - U.profile->>'name' as profile_name - FROM top_threads TH JOIN "Topics" T ON TH.topic_id = T.id - LEFT JOIN "Addresses" A ON TH.address_id = A.id - LEFT JOIN "Users" U ON A.user_id = U.id - ), collaborator_data AS ( - -- get the thread collaborators and their profiles - SELECT - TT.id as thread_id, - CASE WHEN max(A.id) IS NOT NULL THEN - json_agg(json_strip_nulls(json_build_object( - 'address', A.address, - 'community_id', A.community_id, - 'User', json_build_object( - 'id', editor_profiles.id, - 'profile', json_build_object( - 'userId', editor_profiles.id, - 'name', editor_profiles.profile->>'name', - 'address', A.address, - 'lastActive', A.last_active::text, - 'avatarUrl', editor_profiles.profile->>'avatar_url' - ) - ) - ))) - ELSE '[]'::json - END AS collaborators - FROM top_threads TT LEFT JOIN "Collaborations" AS C ON TT.id = C.thread_id - LEFT JOIN "Addresses" A ON C.address_id = A.id - LEFT JOIN "Users" editor_profiles ON A.user_id = editor_profiles.id - GROUP BY TT.id - ), reaction_data AS ( - -- get the thread reactions and the address/profile of the user who reacted - SELECT - TT.id as thread_id, - json_agg(json_strip_nulls(json_build_object( - 'id', R.id, - 'type', R.reaction, - 'address', A.address, - 'updated_at', R.updated_at::text, - 'voting_weight', R.calculated_voting_weight, - 'profile_name', U.profile->>'name', - 'avatar_url', U.profile->>'avatar_url', - 'last_active', A.last_active::text - ))) as "associatedReactions" - FROM "Reactions" R JOIN top_threads TT ON TT.id = R.thread_id - JOIN "Addresses" A ON A.id = R.address_id - JOIN "Users" U ON U.id = A.user_id - -- where clause doesn't change query result but forces DB to use the correct indexes - WHERE R.thread_id = TT.id - GROUP BY TT.id - ), contest_data AS ( - -- get the contest data associated with the thread - SELECT - TT.id as thread_id, - json_agg(json_strip_nulls(json_build_object( - 'contest_id', CON.contest_id, - 'contest_name', CM.name, - 'contest_cancelled', CM.cancelled, - 'contest_interval', CM.interval, - 'contest_address', CON.contest_address, - 'score', CON.score, - 'thread_id', TT.id, - 'content_id', CA.content_id, - 'start_time', CON.start_time, - 'end_time', CON.end_time - ))) as "associatedContests" - FROM "Contests" CON - JOIN "ContestManagers" CM ON CM.contest_address = CON.contest_address - JOIN "ContestActions" CA ON CON.contest_id = CA.contest_id - AND CON.contest_address = CA.contest_address AND CA.action = 'upvoted' - JOIN top_threads TT ON TT.id = CA.thread_id - GROUP BY TT.id - )${ - withXRecentComments - ? `, recent_comments AS ( - -- get the recent comments data associated with the thread - SELECT - TT.id as thread_id, - json_agg(json_strip_nulls(json_build_object( - 'id', COM.id, - 'address', A.address, - 'text', COM.text, - 'created_at', COM.created_at::text, - 'updated_at', COM.updated_at::text, - 'deleted_at', COM.deleted_at::text, - 'marked_as_spam_at', COM.marked_as_spam_at::text, - 'discord_meta', COM.discord_meta, - 'profile_name', U.profile->>'name', - 'profile_avatar_url', U.profile->>'avatar_url', - 'user_id', U.id - ))) as "recentComments" - FROM ( - Select tempC.* FROM "Comments" tempC - JOIN top_threads tempTT ON tempTT.id = tempC.thread_id - WHERE deleted_at IS NULL - ORDER BY created_at DESC - LIMIT :withXRecentComments - ) COM - JOIN top_threads TT ON TT.id = COM.thread_id - JOIN "Addresses" A ON A.id = COM.address_id - JOIN "Users" U ON U.id = A.user_id - GROUP BY TT.id - )` - : '' - } - SELECT - TT.*, TM.*, CD.*, RD.*, COND.* - ${withXRecentComments ? `, RC.*` : ''} - FROM top_threads TT - LEFT JOIN thread_metadata TM ON TT.id = TM.thread_id - LEFT JOIN collaborator_data CD ON TT.id = CD.thread_id - LEFT JOIN reaction_data RD ON TT.id = RD.thread_id - LEFT JOIN contest_data COND ON TT.id = COND.thread_id - ${ - withXRecentComments - ? `LEFT JOIN recent_comments RC ON TT.id = RC.thread_id;` - : '' - } - `, - { - replacements, - type: QueryTypes.SELECT, - }, - ); - - const numVotingThreadsQuery = this.models.Thread.count({ - where: { - community_id: communityId, - stage: 'voting', - }, - }); - - try { - const [threads, numVotingThreads] = await Promise.all([ - responseThreadsQuery, - numVotingThreadsQuery, - ]); - - return { - limit: replacements.limit, - page: replacements.page, - // data params - threads, - numVotingThreads, - }; - } catch (e) { - console.error(e); - throw new ServerError('Could not fetch threads'); - } -} diff --git a/packages/commonwealth/server/routes/feed.ts b/packages/commonwealth/server/routes/feed.ts index 2731334967a..37e624aa1a2 100644 --- a/packages/commonwealth/server/routes/feed.ts +++ b/packages/commonwealth/server/routes/feed.ts @@ -1,8 +1,14 @@ -import { AppError } from '@hicommonwealth/core'; -import { Thread, ThreadAttributes, type DB } from '@hicommonwealth/model'; +import { AppError, query } from '@hicommonwealth/core'; +import { Thread, type DB } from '@hicommonwealth/model'; +import { + GetThreads, + GetThreadsOrderBy, + GetThreadsStatus, + Thread as ThreadSchema, +} from '@hicommonwealth/schemas'; import { getDecodedString, slugify } from '@hicommonwealth/shared'; import { Feed } from 'feed'; -import { GetBulkThreadsResult } from '../controllers/server_threads_methods/get_bulk_threads'; +import { z } from 'zod'; import { ServerControllers } from '../routing/router'; import { TypedRequestQuery, TypedResponse } from '../types'; import { formatErrorPretty } from '../util/errorFormat'; @@ -14,16 +20,18 @@ import { SearchThreadsRequestQuery, } from './threads/get_threads_handler'; -function toDate(t: ThreadAttributes): Date { - // @ts-expect-error StrictNullChecks - return t.last_edited ?? t.created_at; +function toDate(t: z.infer): Date { + return t.last_edited ?? t.created_at!; } -function sortByDateDesc(a: ThreadAttributes, b: ThreadAttributes) { +function sortByDateDesc( + a: z.infer, + b: z.infer, +) { return toDate(b).getTime() - toDate(a).getTime(); } -function computeUpdated(bulkThreads: GetBulkThreadsResult): Date { +function computeUpdated(bulkThreads: z.infer) { if (bulkThreads.threads.length === 0) { // there are no threads return new Date(); @@ -34,6 +42,7 @@ function computeUpdated(bulkThreads: GetBulkThreadsResult): Date { // return the most recent thread and get its date return toDate(sortedByDateDesc[0]); } + export const getFeedHandler = async ( models: DB, controllers: ServerControllers, @@ -85,30 +94,22 @@ export const getFeedHandler = async ( status, } = bulkQueryValidationResult.data; - const bulkThreads = await controllers.threads.getBulkThreads({ - communityId: community_id, - // @ts-expect-error StrictNullChecks - stage, - // @ts-expect-error StrictNullChecks - topicId: topic_id, - // @ts-expect-error StrictNullChecks - includePinnedThreads, - // @ts-expect-error StrictNullChecks - page, - // @ts-expect-error StrictNullChecks - limit, - // @ts-expect-error StrictNullChecks - orderBy, - // @ts-expect-error StrictNullChecks - fromDate: from_date, - // @ts-expect-error StrictNullChecks - toDate: to_date, - // @ts-expect-error StrictNullChecks - archived: archived, - // @ts-expect-error StrictNullChecks - contestAddress, - // @ts-expect-error StrictNullChecks - status, + const bulkThreads = await query(Thread.GetThreads(), { + actor: { user: { email: '' } }, + payload: { + page, + limit, + community_id, + stage, + topic_id, + includePinnedThreads, + order_by: orderBy as z.infer, + from_date, + to_date, + archived, + contestAddress, + status: status as z.infer, + }, }); const community = await models.Community.findOne({ @@ -116,7 +117,7 @@ export const getFeedHandler = async ( id: community_id, }, }); - const updated = computeUpdated(bulkThreads); + const updated = computeUpdated(bulkThreads!); // const self = `${req.protocol}://${req.get('host')}${req.originalUrl}`; const feed = new Feed({ @@ -136,7 +137,7 @@ export const getFeedHandler = async ( }, }); - bulkThreads.threads.forEach((thread) => { + bulkThreads!.threads.forEach((thread) => { const title = getDecodedString(thread.title); const slug = slugify(title); feed.addItem({ diff --git a/packages/commonwealth/server/routes/threads/get_threads_handler.ts b/packages/commonwealth/server/routes/threads/get_threads_handler.ts index ac711c70161..abe14184546 100644 --- a/packages/commonwealth/server/routes/threads/get_threads_handler.ts +++ b/packages/commonwealth/server/routes/threads/get_threads_handler.ts @@ -1,5 +1,7 @@ -import { AppError } from '@hicommonwealth/core'; +import { AppError, query } from '@hicommonwealth/core'; import { Thread } from '@hicommonwealth/model'; +import { GetThreadsOrderBy, GetThreadsStatus } from '@hicommonwealth/schemas'; +import { z } from 'zod'; import { ALL_COMMUNITIES } from '../../middleware/databaseValidationService'; import { ServerControllers } from '../../routing/router'; import { @@ -116,31 +118,25 @@ export const getThreadsHandler = async ( withXRecentComments, } = bulkQueryValidationResult.data; - const bulkThreads = await controllers.threads.getBulkThreads({ - communityId: community_id, - // @ts-expect-error StrictNullChecks - stage, - // @ts-expect-error StrictNullChecks - topicId: topic_id, - // @ts-expect-error StrictNullChecks - includePinnedThreads, - // @ts-expect-error StrictNullChecks - page, - // @ts-expect-error StrictNullChecks - limit, - // @ts-expect-error StrictNullChecks - orderBy, - // @ts-expect-error StrictNullChecks - fromDate: from_date, - // @ts-expect-error StrictNullChecks - toDate: to_date, - // @ts-expect-error StrictNullChecks - archived: archived, - // @ts-expect-error StrictNullChecks - contestAddress, - // @ts-expect-error StrictNullChecks - status, - withXRecentComments, + const bulkThreads = await query(Thread.GetThreads(), { + actor: { + user: { email: '' }, + }, + payload: { + page, + limit, + community_id, + stage, + topic_id, + includePinnedThreads, + order_by: orderBy as z.infer, + from_date, + to_date, + archived: archived, + contestAddress, + status: status as z.infer, + withXRecentComments, + }, }); return success(res, bulkThreads); } diff --git a/packages/commonwealth/server/routes/viewUserActivity.ts b/packages/commonwealth/server/routes/viewUserActivity.ts deleted file mode 100644 index 3d896f2220f..00000000000 --- a/packages/commonwealth/server/routes/viewUserActivity.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { AppError } from '@hicommonwealth/core'; -import type { DB } from '@hicommonwealth/model'; -import { getActivityFeed } from '@hicommonwealth/model'; -import type { NextFunction, Request, Response } from 'express'; - -export const Errors = { - NotLoggedIn: 'Must be signed in to view user dashboard', -}; - -export default async ( - models: DB, - req: Request, - res: Response, - next: NextFunction, -) => { - if (!req.user) { - return next(new AppError(Errors.NotLoggedIn)); - } - const { id } = req.user; - const notificationsWithActivity = await getActivityFeed(models, id); - return res.json({ status: 'Success', result: notificationsWithActivity }); -}; diff --git a/packages/commonwealth/server/routing/router.ts b/packages/commonwealth/server/routing/router.ts index a477b746265..4117cdc2b62 100644 --- a/packages/commonwealth/server/routing/router.ts +++ b/packages/commonwealth/server/routing/router.ts @@ -40,7 +40,6 @@ import upgradeMember, { upgradeMemberValidation, } from '../routes/upgradeMember'; import viewGlobalActivity from '../routes/viewGlobalActivity'; -import viewUserActivity from '../routes/viewUserActivity'; import getUploadSignature from '../routes/getUploadSignature'; @@ -492,13 +491,6 @@ function setupRouter( getUploadSignature.bind(this, models), ); - registerRoute( - router, - 'post', - '/viewUserActivity', - passport.authenticate('jwt', { session: false }), - viewUserActivity.bind(this, models), - ); registerRoute( router, 'post', diff --git a/packages/commonwealth/test/integration/api/userDashboard.spec.ts b/packages/commonwealth/test/integration/api/userDashboard.spec.ts index 0b2ac57b5e6..e986358f1e7 100644 --- a/packages/commonwealth/test/integration/api/userDashboard.spec.ts +++ b/packages/commonwealth/test/integration/api/userDashboard.spec.ts @@ -161,12 +161,15 @@ describe('User Dashboard API', () => { await dispose()(); }); - describe('/viewUserActivity', () => { + describe('/GetUserActivity', () => { + const apiUrl = '/api/v1/GetUserActivity'; + test('should fail without JWT', async () => { const res = await chai.request .agent(server.app) - .post('/api/viewUserActivity') + .get(apiUrl) .set('Accept', 'application/json') + .set('address', userAddress) .send({ chain }); expect(res).to.not.be.null; expect(res.error).to.not.be.null; @@ -175,16 +178,17 @@ describe('User Dashboard API', () => { test('should return user activity for joined communities only', async () => { const res = await chai.request .agent(server.app) - .post('/api/viewUserActivity') + .get(apiUrl) .set('Accept', 'application/json') + .set('address', userAddress) .send({ chain, jwt: userJWT }); + console.log(res); expect(res.status).to.be.equal(200); - expect(res.body.status).to.be.equal('Success'); - expect(res.body).to.not.be.null; - expect(res.body.result).to.not.be.null; + expect(res.text).to.not.be.null; - const threadIds = res.body.result.map((a) => a.thread.id); + const resBody = JSON.parse(res.text); + const threadIds = resBody.map((a) => a.id); const chains = await server.models.Thread.findAll({ attributes: attributesOf('community_id'), where: { @@ -209,16 +213,16 @@ describe('User Dashboard API', () => { const res = await chai.request .agent(server.app) - .post('/api/viewUserActivity') + .get(apiUrl) .set('Accept', 'application/json') + .set('address', userAddress) .send({ chain, jwt: userJWT }); expect(res.status).to.be.equal(200); - expect(res.body.status).to.be.equal('Success'); - expect(res.body).to.not.be.null; - expect(res.body.result).to.not.be.null; + expect(res.text).to.not.be.null; - const threadIds = res.body.result.map((a) => a.thread.id); + const resBody = JSON.parse(res.text); + const threadIds = resBody.map((a) => a.id); const chains = await server.models.Thread.findAll({ attributes: attributesOf('community_id'), where: { @@ -257,16 +261,16 @@ describe('User Dashboard API', () => { const res = await chai.request .agent(server.app) - .post('/api/viewUserActivity') + .get(apiUrl) .set('Accept', 'application/json') + .set('address', userAddress) .send({ chain, jwt: userJWT }); expect(res.status).to.be.equal(200); - expect(res.body.status).to.be.equal('Success'); - expect(res.body).to.not.be.null; - expect(res.body.result).to.not.be.null; + expect(res.text).to.not.be.null; - const threadIds = res.body.result.map((a) => a.thread_id); + const resBody = JSON.parse(res.text); + const threadIds = resBody.map((a) => a.id); const chains = ( await server.models.Thread.findAll({ attributes: attributesOf('community_id'), @@ -282,5 +286,5 @@ describe('User Dashboard API', () => { }); }); - describe.todo('/viewGlobalActivity', () => {}); + describe.todo('/GetGlobalActivity', () => {}); }); diff --git a/packages/load-testing/test/api/feed.spec.ts b/packages/load-testing/test/api/feed.spec.ts index e8dd6cf3ee6..11bbcdcf46f 100644 --- a/packages/load-testing/test/api/feed.spec.ts +++ b/packages/load-testing/test/api/feed.spec.ts @@ -1,9 +1,9 @@ import { - viewGlobalActivity, - viewUserActivity, + getGlobalActivity, + getUserActivity, } from '../util/apiRequests/feed.ts'; import { createJwts } from '../util/apiRequests/utility.ts'; -import { LEGACY_API_URL, TRPC_API_URL } from '../util/config.ts'; +import { TRPC_API_URL } from '../util/config.ts'; import { createScenario } from '../util/scenarios.ts'; import { IgnoreLifecycleMetrics } from '../util/utils.ts'; @@ -35,10 +35,10 @@ export function setup(): string[] { } export async function globalActivity() { - viewGlobalActivity(LEGACY_API_URL); + getGlobalActivity(TRPC_API_URL); } export async function userActivity(jwts: string) { const jwt = jwts[Math.floor(Math.random() * jwts.length)]; - viewUserActivity(LEGACY_API_URL, jwt); + getUserActivity(TRPC_API_URL, jwt); } diff --git a/packages/load-testing/test/util/apiRequests/feed.ts b/packages/load-testing/test/util/apiRequests/feed.ts index 03d9033f787..ce8777d6f80 100644 --- a/packages/load-testing/test/util/apiRequests/feed.ts +++ b/packages/load-testing/test/util/apiRequests/feed.ts @@ -2,15 +2,15 @@ import http from 'k6/http'; import { checkResStatus } from '../utils.ts'; // TODO: refactor to get requests in API -export function viewGlobalActivity(apiUrl: string): boolean { - return checkResStatus(http.post(`${apiUrl}/viewGlobalActivity`), 200); +export function getGlobalActivity(apiUrl: string): boolean { + return checkResStatus(http.post(`${apiUrl}/feed.GetGlobalActivity`), 200); } // TODO: refactor to get requests in API -export function viewUserActivity(apiUrl: string, jwt: string): boolean { +export function getUserActivity(apiUrl: string, jwt: string): boolean { return checkResStatus( http.post( - `${apiUrl}/viewUserActivity`, + `${apiUrl}/feed.GetUserActivity`, JSON.stringify({ jwt, }), diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca0cf6aa195..79a7841919f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -161,10 +161,10 @@ importers: version: 6.21.0(eslint@8.57.0)(typescript@5.4.5) '@vitejs/plugin-react-swc': specifier: ^3.7.0 - version: 3.7.0(@swc/helpers@0.5.12)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)) + version: 3.7.0(@swc/helpers@0.5.12)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)) '@vitest/coverage-istanbul': specifier: ^1.6.0 - version: 1.6.0(vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.31.0)) + version: 1.6.0(vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.34.1)) chai: specifier: ^4.3.6 version: 4.4.1 @@ -284,22 +284,22 @@ importers: version: 5.4.5 vite: specifier: ^5.2.12 - version: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + version: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) vite-bundle-visualizer: specifier: ^1.2.1 version: 1.2.1(rollup@4.18.0) vite-plugin-html: specifier: ^3.2.2 - version: 3.2.2(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)) + version: 3.2.2(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)) vite-plugin-node-polyfills: specifier: ^0.22.0 - version: 0.22.0(rollup@4.18.0)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)) + version: 0.22.0(rollup@4.18.0)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)) vite-tsconfig-paths: specifier: ^4.3.2 - version: 4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)) + version: 4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)) vitest: specifier: ^1.6.0 - version: 1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.31.0) + version: 1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.34.1) wait-on: specifier: ^7.2.0 version: 7.2.0 @@ -415,22 +415,12 @@ importers: libs/api-client: dependencies: - moment: - specifier: ^2.23.0 - version: 2.30.1 - qs: - specifier: ^6.13.0 - version: 6.13.0 + node-fetch: + specifier: ^3.3.2 + version: 3.3.2 url-join: specifier: ^5.0.0 version: 5.0.0 - devDependencies: - '@types/moment': - specifier: ^2.13.0 - version: 2.13.0 - tsx: - specifier: ^4.7.2 - version: 4.9.3 libs/chains: dependencies: @@ -735,10 +725,10 @@ importers: version: 0.10.10(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@canvas-js/core': specifier: ^0.10.10 - version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) '@canvas-js/gossiplog': specifier: ^0.10.10 - version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) '@canvas-js/interfaces': specifier: ^0.10.10 version: 0.10.10 @@ -811,10 +801,10 @@ importers: version: 0.10.10(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@canvas-js/core': specifier: ^0.10.10 - version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) '@canvas-js/gossiplog': specifier: ^0.10.10 - version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) + version: 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) '@canvas-js/interfaces': specifier: ^0.10.10 version: 0.10.10 @@ -991,10 +981,10 @@ importers: version: 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@tanstack/react-query': specifier: ^4.29.7 - version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) '@tanstack/react-query-devtools': specifier: ^4.29.7 - version: 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@tanstack/react-table': specifier: ^8.9.7 version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -1009,7 +999,7 @@ importers: version: 10.45.2(@trpc/server@10.45.2) '@trpc/react-query': specifier: ^10.45.1 - version: 10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/react-helmet-async': specifier: ^1.0.3 version: 1.0.3(react@18.3.1) @@ -1252,7 +1242,7 @@ importers: version: 18.3.1 react-beautiful-dnd: specifier: ^13.1.1 - version: 13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + version: 13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) react-device-detect: specifier: ^2.2.3 version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -1693,42 +1683,78 @@ packages: resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.25.7': + resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.25.2': resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.25.7': + resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} + engines: {node: '>=6.9.0'} + '@babel/core@7.24.5': resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} engines: {node: '>=6.9.0'} + '@babel/core@7.25.7': + resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.25.6': resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.25.7': + resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': - resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} + '@babel/helper-annotate-as-pure@7.25.7': + resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7': + resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.25.2': resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.25.7': + resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.25.0': resolution: {integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.25.7': + resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.25.2': resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.25.7': + resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-define-polyfill-provider@0.6.2': resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: @@ -1742,6 +1768,10 @@ packages: resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.25.7': + resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.3': resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} engines: {node: '>=6.9.0'} @@ -1750,40 +1780,78 @@ packages: resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.25.7': + resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.25.2': resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.25.7': + resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.24.7': resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} + '@babel/helper-optimise-call-expression@7.25.7': + resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==} + engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.24.8': resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.25.7': + resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} + engines: {node: '>=6.9.0'} + '@babel/helper-remap-async-to-generator@7.25.0': resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.25.7': + resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.25.0': resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.25.7': + resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-simple-access@7.24.7': resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.25.7': + resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.25.7': + resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.24.1': resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} engines: {node: '>=6.9.0'} @@ -1792,6 +1860,10 @@ packages: resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.25.7': + resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.5': resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} engines: {node: '>=6.9.0'} @@ -1800,18 +1872,34 @@ packages: resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.7': + resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.24.8': resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.25.7': + resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.25.0': resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==} engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.25.7': + resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.24.5': resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.25.7': + resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.24.5': resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} engines: {node: '>=6.9.0'} @@ -1820,6 +1908,10 @@ packages: resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} + '@babel/highlight@7.25.7': + resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} + engines: {node: '>=6.9.0'} + '@babel/parser@7.24.5': resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} engines: {node: '>=6.0.0'} @@ -1835,32 +1927,37 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3': - resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==} + '@babel/parser@7.25.7': + resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7': + resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0': - resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==} + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7': + resolution: {integrity: sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0': - resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==} + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7': + resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': - resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7': + resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0': - resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==} + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7': + resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1885,6 +1982,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-default-from@7.25.7': + resolution: {integrity: sha512-Egdiuy7pLTyaPkIr6rItNyFVbblTmx3VgqY+72KiS9BzcA+SMyrS9zSumQeSANo8uE3Kax0ZUMkpNh0Q+mbNwg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} @@ -1960,6 +2063,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-default-from@7.25.7': + resolution: {integrity: sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-namespace-from@7.8.3': resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -1971,14 +2080,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.24.7': - resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} + '@babel/plugin-syntax-flow@7.25.7': + resolution: {integrity: sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.25.7': + resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.24.7': - resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} + '@babel/plugin-syntax-import-attributes@7.25.7': + resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1999,6 +2114,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.25.7': + resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -2047,6 +2168,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.25.7': + resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} @@ -2059,8 +2186,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.25.0': - resolution: {integrity: sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==} + '@babel/plugin-transform-arrow-functions@7.25.7': + resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.25.7': + resolution: {integrity: sha512-4B6OhTrwYKHYYgcwErvZjbmH9X5TxQBsaBHdzEIB4l71gR5jh/tuHGlb9in47udL2+wVUcOz5XXhhfhVJwEpEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2071,8 +2204,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.24.7': - resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} + '@babel/plugin-transform-async-to-generator@7.25.7': + resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.25.7': + resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2083,14 +2222,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-properties@7.24.7': - resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} + '@babel/plugin-transform-block-scoping@7.25.7': + resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.25.7': + resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-static-block@7.24.7': - resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} + '@babel/plugin-transform-class-static-block@7.25.7': + resolution: {integrity: sha512-rvUUtoVlkDWtDWxGAiiQj0aNktTPn3eFynBcMC2IhsXweehwgdI9ODe+XjWw515kEmv22sSOTp/rxIRuTiB7zg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 @@ -2101,50 +2246,68 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.25.7': + resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.24.7': resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.25.7': + resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.24.8': resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.24.7': - resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} + '@babel/plugin-transform-destructuring@7.25.7': + resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.25.7': + resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.24.7': - resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} + '@babel/plugin-transform-duplicate-keys@7.25.7': + resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0': - resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==} + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7': + resolution: {integrity: sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-dynamic-import@7.24.7': - resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} + '@babel/plugin-transform-dynamic-import@7.25.7': + resolution: {integrity: sha512-UvcLuual4h7/GfylKm2IAA3aph9rwvAM2XBA0uPKU3lca+Maai4jBjjEVUS568ld6kJcgbouuumCBhMd/Yz17w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.24.7': - resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} + '@babel/plugin-transform-exponentiation-operator@7.25.7': + resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.24.7': - resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} + '@babel/plugin-transform-export-namespace-from@7.25.7': + resolution: {integrity: sha512-h3MDAP5l34NQkkNulsTNyjdaR+OiB0Im67VU//sFupouP8Q6m9Spy7l66DcaAQxtmCqGdanPByLsnwFttxKISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2155,8 +2318,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.24.7': - resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} + '@babel/plugin-transform-flow-strip-types@7.25.7': + resolution: {integrity: sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.25.7': + resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2167,8 +2336,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.24.7': - resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + '@babel/plugin-transform-function-name@7.25.7': + resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.25.7': + resolution: {integrity: sha512-Ot43PrL9TEAiCe8C/2erAjXMeVSnE/BLEx6eyrKLNFCCw5jvhTHKyHxdI1pA0kz5njZRYAnMO2KObGqOCRDYSA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2179,20 +2354,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.24.7': - resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + '@babel/plugin-transform-literals@7.25.7': + resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.25.7': + resolution: {integrity: sha512-iImzbA55BjiovLyG2bggWS+V+OLkaBorNvc/yJoeeDQGztknRnDdYfp2d/UPmunZYEnZi6Lg8QcTmNMHOB0lGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.24.7': - resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + '@babel/plugin-transform-member-expression-literals@7.25.7': + resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.24.7': - resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + '@babel/plugin-transform-modules-amd@7.25.7': + resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2203,14 +2384,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.25.0': - resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==} + '@babel/plugin-transform-modules-commonjs@7.25.7': + resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.24.7': - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + '@babel/plugin-transform-modules-systemjs@7.25.7': + resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.25.7': + resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2221,44 +2408,50 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-new-target@7.24.7': - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + '@babel/plugin-transform-named-capturing-groups-regex@7.25.7': + resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.25.7': + resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + '@babel/plugin-transform-nullish-coalescing-operator@7.25.7': + resolution: {integrity: sha512-FbuJ63/4LEL32mIxrxwYaqjJxpbzxPVQj5a+Ebrc8JICV6YX8nE53jY+K0RZT3um56GoNWgkS2BQ/uLGTjtwfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.24.7': - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + '@babel/plugin-transform-numeric-separator@7.25.7': + resolution: {integrity: sha512-8CbutzSSh4hmD+jJHIA8vdTNk15kAzOnFLVVgBSMGr28rt85ouT01/rezMecks9pkU939wDInImwCKv4ahU4IA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.24.7': - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + '@babel/plugin-transform-object-rest-spread@7.25.7': + resolution: {integrity: sha512-1JdVKPhD7Y5PvgfFy0Mv2brdrolzpzSoUq2pr6xsR+m+3viGGeHEokFKsCgOkbeFOQxfB1Vt2F0cPJLRpFI4Zg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.24.7': - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + '@babel/plugin-transform-object-super@7.25.7': + resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.24.7': - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + '@babel/plugin-transform-optional-catch-binding@7.25.7': + resolution: {integrity: sha512-m9obYBA39mDPN7lJzD5WkGGb0GO54PPLXsbcnj1Hyeu8mSRz7Gb4b1A6zxNX32ZuUySDK4G6it8SDFWD1nCnqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-chaining@7.24.8': - resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==} + '@babel/plugin-transform-optional-chaining@7.25.7': + resolution: {integrity: sha512-h39agClImgPWg4H8mYVAbD1qP9vClFbEjqoJmt87Zen8pjqK8FTPUwrOXAvqu5soytwxrLMd2fx2KSCp2CHcNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2269,20 +2462,38 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.25.7': + resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.24.7': resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.25.7': + resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.24.7': resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.24.7': - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + '@babel/plugin-transform-private-property-in-object@7.25.7': + resolution: {integrity: sha512-LzA5ESzBy7tqj00Yjey9yWfs3FKy4EmJyKOSWld144OxkTji81WWnUT8nkLUn+imN/zHL8ZQlOu/MTUAhHaX3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.25.7': + resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2293,32 +2504,56 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.25.7': + resolution: {integrity: sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.24.7': resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.25.7': + resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.24.7': resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.25.7': + resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.25.2': resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.24.7': - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + '@babel/plugin-transform-react-jsx@7.25.7': + resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.25.7': + resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.24.7': - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + '@babel/plugin-transform-reserved-words@7.25.7': + resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2329,32 +2564,56 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.25.7': + resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.24.7': resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.25.7': + resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.24.7': resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.25.7': + resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.24.7': resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.24.7': - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + '@babel/plugin-transform-sticky-regex@7.25.7': + resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.25.7': + resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.24.8': - resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==} + '@babel/plugin-transform-typeof-symbol@7.25.7': + resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2365,14 +2624,20 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-escapes@7.24.7': - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + '@babel/plugin-transform-typescript@7.25.7': + resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.25.7': + resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.24.7': - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + '@babel/plugin-transform-unicode-property-regex@7.25.7': + resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2383,8 +2648,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-sets-regex@7.24.7': - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + '@babel/plugin-transform-unicode-regex@7.25.7': + resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.25.7': + resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -2437,10 +2708,18 @@ packages: resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.25.7': + resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==} + engines: {node: '>=6.9.0'} + '@babel/template@7.25.0': resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} engines: {node: '>=6.9.0'} + '@babel/template@7.25.7': + resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.3': resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} engines: {node: '>=6.9.0'} @@ -2449,6 +2728,10 @@ packages: resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.7': + resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} + engines: {node: '>=6.9.0'} + '@babel/types@7.24.5': resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} engines: {node: '>=6.9.0'} @@ -2461,6 +2744,10 @@ packages: resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} engines: {node: '>=6.9.0'} + '@babel/types@7.25.7': + resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} + engines: {node: '>=6.9.0'} + '@brillout/import@0.2.3': resolution: {integrity: sha512-1T8WlD75eeFSMrptGy8jiLHmfHgMmSjWvLOIUvHmSVZt+6k0eQqYUoK4KbmE4T9pVLIfxvZSOm2D68VEqKRHRw==} @@ -7432,6 +7719,10 @@ packages: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + brorand@1.1.0: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} @@ -7468,6 +7759,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.24.0: + resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} @@ -7580,6 +7876,9 @@ packages: caniuse-lite@1.0.30001655: resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==} + caniuse-lite@1.0.30001667: + resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} + canvas-renderer@2.1.1: resolution: {integrity: sha512-/V0XetN7s1Mk3NO7x2wxPZYv0pLMQtGAhecuOuKR88beiYCUle1AbCcFZNLu+4NVzi9RVHS0rXtIgzPEaKidLw==} @@ -7946,6 +8245,9 @@ packages: core-js-compat@3.38.0: resolution: {integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==} + core-js-compat@3.38.1: + resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} + core-js-pure@3.37.0: resolution: {integrity: sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ==} @@ -8460,6 +8762,9 @@ packages: electron-to-chromium@1.5.11: resolution: {integrity: sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==} + electron-to-chromium@1.5.35: + resolution: {integrity: sha512-hOSRInrIDm0Brzp4IHW2F/VM+638qOL2CzE0DgpnGzKW27C95IqqeqgKz/hxHGnvPxvQGpHUGD5qRVC9EZY2+A==} + elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} @@ -8489,6 +8794,10 @@ packages: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} @@ -8530,6 +8839,11 @@ packages: engines: {node: '>=4'} hasBin: true + envinfo@7.14.0: + resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==} + engines: {node: '>=4'} + hasBin: true + err-code@3.0.1: resolution: {integrity: sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==} @@ -8623,6 +8937,10 @@ packages: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} engines: {node: '>=6'} + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + escape-carriage@1.3.1: resolution: {integrity: sha512-GwBr6yViW3ttx1kb7/Oh+gKQ1/TrhYwxKqVmg5gS+BK+Qe2KrOa/Vh7w3HPBvgGf0LfcDGoY9I6NHKoA5Hozhw==} @@ -8728,6 +9046,7 @@ packages: eslint@8.57.0: resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true esm-loader-css@1.0.6: @@ -9014,6 +9333,10 @@ packages: resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} hasBin: true + fast-xml-parser@4.5.0: + resolution: {integrity: sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==} + hasBin: true + fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} @@ -9076,6 +9399,10 @@ packages: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + filter-obj@1.1.0: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} @@ -9178,6 +9505,10 @@ packages: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} + form-data@4.0.1: + resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} + engines: {node: '>= 6'} + format@0.2.2: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} @@ -9518,6 +9849,9 @@ packages: hermes-estree@0.23.0: resolution: {integrity: sha512-Rkp0PNLGpORw4ktsttkVbpYJbrYKS3hAnkxu8D9nvQi6LvSbuPa+tYw/t2u3Gjc35lYd/k95YkjqyTcN4zspag==} + hermes-estree@0.23.1: + resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} + hermes-parser@0.19.1: resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==} @@ -9527,6 +9861,9 @@ packages: hermes-parser@0.23.0: resolution: {integrity: sha512-xLwM4ylfHGwrm+2qXfO1JT/fnqEDGSnpS/9hQ4VLtqTexSviu2ZpBgz07U8jVtndq67qdb/ps0qvaWDZ3fkTyg==} + hermes-parser@0.23.1: + resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} + hermes-profile-transformer@0.0.6: resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} engines: {node: '>=8'} @@ -10316,6 +10653,9 @@ packages: joi@17.13.1: resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==} + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + jose@5.3.0: resolution: {integrity: sha512-IChe9AtAE79ru084ow8jzkN2lNrG3Ntfiv65Cvj9uOCE2m5LNsdHG+9EbxWxAoWRF9TgDOqLN5jm08++owDVRg==} @@ -10391,6 +10731,11 @@ packages: engines: {node: '>=4'} hasBin: true + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -10513,8 +10858,8 @@ packages: lexical@0.17.1: resolution: {integrity: sha512-72/MhR7jqmyqD10bmJw8gztlCm4KDDT+TPtU4elqXrEvHoO5XENi34YAEUD9gIkPfqSwyLa9mwAX1nKzIr5xEA==} - lib0@0.2.97: - resolution: {integrity: sha512-Q4d1ekgvufi9FiHkkL46AhecfNjznSL9MRNoJRQ76gBHS9OqU2ArfQK0FvBpuxgWeJeNI0LVgAYMIpsGeX4gYg==} + lib0@0.2.98: + resolution: {integrity: sha512-XteTiNO0qEXqqweWx+b21p/fBnNHUA1NwAtJNJek1oPrewEZs2uiT4gWivHKr9GqCjDPAhchz0UQO8NwU3bBNA==} engines: {node: '>=16'} hasBin: true @@ -10875,60 +11220,118 @@ packages: resolution: {integrity: sha512-GXHueUzgzcazfzORDxDzWS9jVVRV6u+cR6TGvHOfGdfLzJCj7/D0PretLfyq+MwN20twHxLW+BUXkoaB8sCQBg==} engines: {node: '>=18'} + metro-babel-transformer@0.80.12: + resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==} + engines: {node: '>=18'} + metro-cache-key@0.80.10: resolution: {integrity: sha512-57qBhO3zQfoU/hP4ZlLW5hVej2jVfBX6B4NcSfMj4LgDPL3YknWg80IJBxzQfjQY/m+fmMLmPy8aUMHzUp/guA==} engines: {node: '>=18'} + metro-cache-key@0.80.12: + resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==} + engines: {node: '>=18'} + metro-cache@0.80.10: resolution: {integrity: sha512-8CBtDJwMguIE5RvV3PU1QtxUG8oSSX54mIuAbRZmcQ0MYiOl9JdrMd4JCBvIyhiZLoSStph425SMyCSnjtJsdA==} engines: {node: '>=18'} + metro-cache@0.80.12: + resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==} + engines: {node: '>=18'} + metro-config@0.80.10: resolution: {integrity: sha512-0GYAw0LkmGbmA81FepKQepL1KU/85Cyv7sAiWm6QWeV6AcVCpsKg6jGLqGHJ0LLPL60rWzA4TV1DQAlzdJAEtA==} engines: {node: '>=18'} + metro-config@0.80.12: + resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==} + engines: {node: '>=18'} + metro-core@0.80.10: resolution: {integrity: sha512-nwBB6HbpGlNsZMuzxVqxqGIOsn5F3JKpsp8PziS7Z4mV8a/jA1d44mVOgYmDa2q5WlH5iJfRIIhdz24XRNDlLA==} engines: {node: '>=18'} + metro-core@0.80.12: + resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==} + engines: {node: '>=18'} + metro-file-map@0.80.10: resolution: {integrity: sha512-ytsUq8coneaN7ZCVk1IogojcGhLIbzWyiI2dNmw2nnBgV/0A+M5WaTTgZ6dJEz3dzjObPryDnkqWPvIGLCPtiw==} engines: {node: '>=18'} + metro-file-map@0.80.12: + resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==} + engines: {node: '>=18'} + metro-minify-terser@0.80.10: resolution: {integrity: sha512-Xyv9pEYpOsAerrld7cSLIcnCCpv8ItwysOmTA+AKf1q4KyE9cxrH2O2SA0FzMCkPzwxzBWmXwHUr+A89BpEM6g==} engines: {node: '>=18'} + metro-minify-terser@0.80.12: + resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==} + engines: {node: '>=18'} + metro-resolver@0.80.10: resolution: {integrity: sha512-EYC5CL7f+bSzrqdk1bylKqFNGabfiI5PDctxoPx70jFt89Jz+ThcOscENog8Jb4LEQFG6GkOYlwmPpsi7kx3QA==} engines: {node: '>=18'} + metro-resolver@0.80.12: + resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==} + engines: {node: '>=18'} + metro-runtime@0.80.10: resolution: {integrity: sha512-Xh0N589ZmSIgJYAM+oYwlzTXEHfASZac9TYPCNbvjNTn0EHKqpoJ/+Im5G3MZT4oZzYv4YnvzRtjqS5k0tK94A==} engines: {node: '>=18'} + metro-runtime@0.80.12: + resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==} + engines: {node: '>=18'} + metro-source-map@0.80.10: resolution: {integrity: sha512-EyZswqJW8Uukv/HcQr6K19vkMXW1nzHAZPWJSEyJFKIbgp708QfRZ6vnZGmrtFxeJEaFdNup4bGnu8/mIOYlyA==} engines: {node: '>=18'} + metro-source-map@0.80.12: + resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==} + engines: {node: '>=18'} + metro-symbolicate@0.80.10: resolution: {integrity: sha512-qAoVUoSxpfZ2DwZV7IdnQGXCSsf2cAUExUcZyuCqGlY5kaWBb0mx2BL/xbMFDJ4wBp3sVvSBPtK/rt4J7a0xBA==} engines: {node: '>=18'} hasBin: true + metro-symbolicate@0.80.12: + resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==} + engines: {node: '>=18'} + hasBin: true + metro-transform-plugins@0.80.10: resolution: {integrity: sha512-leAx9gtA+2MHLsCeWK6XTLBbv2fBnNFu/QiYhWzMq8HsOAP4u1xQAU0tSgPs8+1vYO34Plyn79xTLUtQCRSSUQ==} engines: {node: '>=18'} + metro-transform-plugins@0.80.12: + resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==} + engines: {node: '>=18'} + metro-transform-worker@0.80.10: resolution: {integrity: sha512-zNfNLD8Rz99U+JdOTqtF2o7iTjcDMMYdVS90z6+81Tzd2D0lDWVpls7R1hadS6xwM+ymgXFQTjM6V6wFoZaC0g==} engines: {node: '>=18'} + metro-transform-worker@0.80.12: + resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==} + engines: {node: '>=18'} + metro@0.80.10: resolution: {integrity: sha512-FDPi0X7wpafmDREXe1lgg3WzETxtXh6Kpq8+IwsG35R2tMyp2kFIqDdshdohuvDt1J/qDARcEPq7V/jElTb1kA==} engines: {node: '>=18'} hasBin: true + metro@0.80.12: + resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==} + engines: {node: '>=18'} + hasBin: true + micro-base@0.9.0: resolution: {integrity: sha512-4+tOMKidYT5nQ6/UNmYrGVO5PMcnJdfuR4NC8HK8s2H61B4itOhA9yrsjBdqGV7ecdtej36x3YSIfPLRmPrspg==} deprecated: Switch to @scure/base for audited version of the lib & updates @@ -11039,6 +11442,10 @@ packages: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + miller-rabin@4.0.1: resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} hasBin: true @@ -11446,8 +11853,8 @@ packages: numeral@2.0.6: resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==} - nwsapi@2.2.12: - resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} + nwsapi@2.2.13: + resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==} nyc@15.1.0: resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} @@ -11461,6 +11868,10 @@ packages: resolution: {integrity: sha512-dJHyB0S6JkMorUSfSGcYGkkg9kmq3qDUu3ygZUKIfkr47XOPuG35r2Sk6tbwtHXbdKIXmcMvM8DF2CwgdyaHfQ==} engines: {node: '>=18'} + ob1@0.80.12: + resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==} + engines: {node: '>=18'} + obj-multiplex@1.0.0: resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==} @@ -11862,6 +12273,9 @@ packages: picocolors@1.0.1: resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} @@ -12047,6 +12461,9 @@ packages: preact@10.23.2: resolution: {integrity: sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==} + preact@10.24.2: + resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==} + prebuild-install@7.1.2: resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} engines: {node: '>=10'} @@ -12220,10 +12637,6 @@ packages: resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} engines: {node: '>=0.6'} - qs@6.13.0: - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} - engines: {node: '>=0.6'} - qs@6.5.3: resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} engines: {node: '>=0.6'} @@ -12368,6 +12781,9 @@ packages: react-devtools-core@5.3.1: resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==} + react-devtools-core@5.3.2: + resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==} + react-devtools-inline@4.4.0: resolution: {integrity: sha512-ES0GolSrKO8wsKbsEkVeiR/ZAaHQTY4zDh1UW8DImVmm8oaGLl3ijJDvSGe+qDRKPZdPRnDtWWnSvvrgxXdThQ==} @@ -12713,6 +13129,10 @@ packages: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} @@ -12737,6 +13157,17 @@ packages: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} + regexpu-core@6.1.1: + resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==} + engines: {node: '>=4'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.11.1: + resolution: {integrity: sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==} + hasBin: true + regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true @@ -13000,10 +13431,19 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} + send@0.19.0: + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} + engines: {node: '>= 0.8.0'} + sequelize-cli@6.6.2: resolution: {integrity: sha512-V8Oh+XMz2+uquLZltZES6MVAD+yEnmMfwfn+gpXcDiwE3jyQygLt4xoI0zG8gKt6cRcs84hsKnXAKDQjG/JAgg==} engines: {node: '>=10.0.0'} @@ -13054,6 +13494,10 @@ packages: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} + serve-static@1.16.2: + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} + engines: {node: '>= 0.8.0'} + server-only@0.0.1: resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==} @@ -13626,6 +14070,11 @@ packages: engines: {node: '>=10'} hasBin: true + terser@5.34.1: + resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==} + engines: {node: '>=10'} + hasBin: true + test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -14009,6 +14458,10 @@ packages: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} + unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} + engines: {node: '>=4'} + unicode-property-aliases-ecmascript@2.1.0: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} @@ -14115,6 +14568,12 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + uqr@0.1.2: resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} @@ -14860,6 +15319,11 @@ packages: engines: {node: '>= 14'} hasBin: true + yaml@2.5.1: + resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} + engines: {node: '>= 14'} + hasBin: true + yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -15604,8 +16068,15 @@ snapshots: '@babel/highlight': 7.24.7 picocolors: 1.0.1 + '@babel/code-frame@7.25.7': + dependencies: + '@babel/highlight': 7.25.7 + picocolors: 1.1.0 + '@babel/compat-data@7.25.2': {} + '@babel/compat-data@7.25.7': {} + '@babel/core@7.24.5': dependencies: '@ampproject/remapping': 2.3.0 @@ -15626,6 +16097,26 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/core@7.25.7': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helpers': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/template': 7.25.7 + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + convert-source-map: 2.0.0 + debug: 4.3.7 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/generator@7.25.6': dependencies: '@babel/types': 7.25.6 @@ -15633,14 +16124,25 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 + '@babel/generator@7.25.7': + dependencies: + '@babel/types': 7.25.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 + '@babel/helper-annotate-as-pure@7.24.7': dependencies: '@babel/types': 7.25.2 - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + '@babel/helper-annotate-as-pure@7.25.7': dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/types': 7.25.7 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7': + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 transitivePeerDependencies: - supports-color @@ -15652,6 +16154,14 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 + '@babel/helper-compilation-targets@7.25.7': + dependencies: + '@babel/compat-data': 7.25.7 + '@babel/helper-validator-option': 7.25.7 + browserslist: 4.24.0 + lru-cache: 5.1.1 + semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15665,6 +16175,32 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-member-expression-to-functions': 7.25.7 + '@babel/helper-optimise-call-expression': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/traverse': 7.25.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-member-expression-to-functions': 7.25.7 + '@babel/helper-optimise-call-expression': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/traverse': 7.25.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15672,6 +16208,20 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.25.7 + regexpu-core: 6.1.1 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + regexpu-core: 6.1.1 + semver: 6.3.1 + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15683,6 +16233,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + debug: 4.3.7 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + '@babel/helper-environment-visitor@7.22.20': {} '@babel/helper-member-expression-to-functions@7.24.8': @@ -15692,6 +16253,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-member-expression-to-functions@7.25.7': + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-imports@7.24.3': dependencies: '@babel/types': 7.25.2 @@ -15703,6 +16271,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-imports@7.25.7': + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.25.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15713,12 +16288,38 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-simple-access': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-simple-access': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.24.7': dependencies: '@babel/types': 7.25.2 + '@babel/helper-optimise-call-expression@7.25.7': + dependencies: + '@babel/types': 7.25.7 + '@babel/helper-plugin-utils@7.24.8': {} + '@babel/helper-plugin-utils@7.25.7': {} + '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15728,6 +16329,24 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-wrap-function': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-wrap-function': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-replace-supers@7.25.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15737,6 +16356,24 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-replace-supers@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-member-expression-to-functions': 7.25.7 + '@babel/helper-optimise-call-expression': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-member-expression-to-functions': 7.25.7 + '@babel/helper-optimise-call-expression': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-simple-access@7.24.7': dependencies: '@babel/traverse': 7.25.3 @@ -15744,6 +16381,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-simple-access@7.25.7': + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: '@babel/traverse': 7.25.3 @@ -15751,16 +16395,29 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-skip-transparent-expression-wrappers@7.25.7': + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-string-parser@7.24.1': {} '@babel/helper-string-parser@7.24.8': {} + '@babel/helper-string-parser@7.25.7': {} + '@babel/helper-validator-identifier@7.24.5': {} '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-validator-identifier@7.25.7': {} + '@babel/helper-validator-option@7.24.8': {} + '@babel/helper-validator-option@7.25.7': {} + '@babel/helper-wrap-function@7.25.0': dependencies: '@babel/template': 7.25.0 @@ -15769,6 +16426,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-wrap-function@7.25.7': + dependencies: + '@babel/template': 7.25.7 + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/helpers@7.24.5': dependencies: '@babel/template': 7.25.0 @@ -15777,6 +16442,11 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helpers@7.25.7': + dependencies: + '@babel/template': 7.25.7 + '@babel/types': 7.25.7 + '@babel/highlight@7.24.5': dependencies: '@babel/helper-validator-identifier': 7.24.5 @@ -15791,6 +16461,13 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.0.1 + '@babel/highlight@7.25.7': + dependencies: + '@babel/helper-validator-identifier': 7.25.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.0 + '@babel/parser@7.24.5': dependencies: '@babel/types': 7.24.5 @@ -15803,38 +16480,77 @@ snapshots: dependencies: '@babel/types': 7.25.6 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.24.5)': + '@babel/parser@7.25.7': + dependencies: + '@babel/types': 7.25.7 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/traverse': 7.25.6 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.24.5) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/traverse': 7.25.6 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -15862,6 +16578,12 @@ snapshots: '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.5) + '@babel/plugin-proposal-export-default-from@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -15908,129 +16630,269 @@ snapshots: dependencies: '@babel/core': 7.24.5 + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.7)': dependencies: - '@babel/core': 7.24.5 + '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-async-generator-functions@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.5) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-generator-functions@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -16043,33 +16905,83 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.5) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) transitivePeerDependencies: - supports-color + '@babel/plugin-transform-class-static-block@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-classes@7.25.0(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -16082,65 +16994,162 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-classes@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5) + '@babel/traverse': 7.25.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) + '@babel/traverse': 7.25.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 '@babel/template': 7.25.0 + '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/template': 7.25.7 + + '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/template': 7.25.7 + '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-dynamic-import@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) + + '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-export-namespace-from@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7) + + '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 transitivePeerDependencies: - supports-color @@ -16153,33 +17162,86 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-json-strings@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-transform-literals@7.25.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-logical-assignment-operators@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) + + '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color @@ -16192,21 +17254,57 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.24.5)': + '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - '@babel/traverse': 7.25.6 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-simple-access': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-simple-access': 7.25.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + '@babel/traverse': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 transitivePeerDependencies: - supports-color @@ -16216,59 +17314,129 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-nullish-coalescing-operator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) + + '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-numeric-separator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) + + '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5) + + '@babel/plugin-transform-object-rest-spread@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7) - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.5) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.5)': + '@babel/plugin-transform-optional-catch-binding@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) + + '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) transitivePeerDependencies: - supports-color + '@babel/plugin-transform-optional-chaining@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -16277,6 +17445,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -16287,26 +17471,66 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-property-in-object@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -16318,16 +17542,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7) + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + regenerator-transform: 0.15.2 + + '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.5)': dependencies: @@ -16341,11 +17587,33 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-module-imports': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -16354,20 +17622,56 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-spread@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.5)': + '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.24.5)': dependencies: @@ -16380,16 +17684,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 + '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.5)': dependencies: @@ -16397,32 +17723,50 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.5)': + '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.5) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.25.7 + + '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.7) + '@babel/helper-plugin-utils': 7.25.7 '@babel/preset-env@7.25.3(@babel/core@7.24.5)': dependencies: - '@babel/compat-data': 7.25.2 + '@babel/compat-data': 7.25.7 '@babel/core': 7.24.5 - '@babel/helper-compilation-targets': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.24.5) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.24.5) + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-validator-option': 7.25.7 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.24.5) '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.5) + '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.24.5) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) @@ -16434,60 +17778,149 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.24.5) - '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.24.5) - '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.5) + '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.24.5) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5) babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.5) babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5) - core-js-compat: 3.38.0 + core-js-compat: 3.38.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.25.3(@babel/core@7.25.7)': + dependencies: + '@babel/compat-data': 7.25.7 + '@babel/core': 7.25.7 + '@babel/helper-compilation-targets': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-validator-option': 7.25.7 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.7) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.7) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.7) + '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-class-static-block': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-dynamic-import': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-export-namespace-from': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-json-strings': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.7) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.7) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.7) + core-js-compat: 3.38.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -16502,8 +17935,15 @@ snapshots: '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/types': 7.25.6 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/types': 7.25.7 + esutils: 2.0.3 + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.7)': + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-plugin-utils': 7.25.7 + '@babel/types': 7.25.7 esutils: 2.0.3 '@babel/preset-typescript@7.24.7(@babel/core@7.24.5)': @@ -16545,12 +17985,22 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 + '@babel/runtime@7.25.7': + dependencies: + regenerator-runtime: 0.14.1 + '@babel/template@7.25.0': dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.25.3 '@babel/types': 7.25.2 + '@babel/template@7.25.7': + dependencies: + '@babel/code-frame': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/types': 7.25.7 + '@babel/traverse@7.25.3': dependencies: '@babel/code-frame': 7.24.7 @@ -16575,6 +18025,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.25.7': + dependencies: + '@babel/code-frame': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/template': 7.25.7 + '@babel/types': 7.25.7 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.24.5': dependencies: '@babel/helper-string-parser': 7.24.1 @@ -16593,6 +18055,12 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 + '@babel/types@7.25.7': + dependencies: + '@babel/helper-string-parser': 7.25.7 + '@babel/helper-validator-identifier': 7.25.7 + to-fast-properties: 2.0.0 + '@brillout/import@0.2.3': {} '@canvas-js/chain-cosmos@0.10.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -16664,10 +18132,10 @@ snapshots: - supports-color - utf-8-validate - '@canvas-js/core@0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)': + '@canvas-js/core@0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@canvas-js/chain-ethereum': 0.10.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@canvas-js/gossiplog': 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) + '@canvas-js/gossiplog': 0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10) '@canvas-js/interfaces': 0.10.10 '@canvas-js/modeldb': 0.10.10 '@canvas-js/modeldb-idb': 0.10.10(@types/react@18.3.3)(react@18.3.1) @@ -16720,7 +18188,7 @@ snapshots: '@libp2p/peer-id': 4.2.4 '@multiformats/multiaddr': 12.3.0 - '@canvas-js/gossiplog@0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)': + '@canvas-js/gossiplog@0.10.10(@types/react@18.3.3)(bufferutil@4.0.8)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@canvas-js/discovery': 0.10.10 '@canvas-js/interfaces': 0.10.10 @@ -16750,7 +18218,7 @@ snapshots: '@libp2p/peer-id-factory': 4.2.4 '@libp2p/ping': 1.1.5 '@libp2p/prometheus-metrics': 3.1.5 - '@libp2p/webrtc': 4.1.7(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)) + '@libp2p/webrtc': 4.1.7(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)) '@libp2p/websockets': 8.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@multiformats/multiaddr': 12.3.0 '@noble/hashes': 1.4.0 @@ -17269,7 +18737,7 @@ snapshots: eth-json-rpc-filters: 6.0.1 eventemitter3: 5.0.1 keccak: 3.0.4 - preact: 10.23.2 + preact: 10.24.2 sha.js: 2.4.11 transitivePeerDependencies: - supports-color @@ -19109,7 +20577,7 @@ snapshots: uint8arraylist: 2.4.8 uint8arrays: 5.1.0 - '@libp2p/webrtc@4.1.7(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))': + '@libp2p/webrtc@4.1.7(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))': dependencies: '@chainsafe/libp2p-noise': 15.1.1 '@libp2p/interface': 1.7.0 @@ -19132,7 +20600,7 @@ snapshots: progress-events: 1.0.0 protons-runtime: 5.5.0 race-signal: 1.1.0 - react-native-webrtc: 118.0.7(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)) + react-native-webrtc: 118.0.7(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)) uint8arraylist: 2.4.8 uint8arrays: 5.1.0 transitivePeerDependencies: @@ -19846,7 +21314,7 @@ snapshots: '@polkadot/api-derive@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/api': 6.0.5 '@polkadot/rpc-core': 6.0.5 '@polkadot/types': 6.0.5 @@ -19859,7 +21327,7 @@ snapshots: '@polkadot/api@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/api-derive': 6.0.5 '@polkadot/keyring': 7.9.2(@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2))(@polkadot/util@7.9.2) '@polkadot/rpc-core': 6.0.5 @@ -19923,7 +21391,7 @@ snapshots: '@polkadot/keyring@7.9.2(@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2))(@polkadot/util@7.9.2)': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/util': 7.9.2 '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) @@ -19935,11 +21403,11 @@ snapshots: '@polkadot/networks@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/rpc-core@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/rpc-provider': 6.0.5 '@polkadot/types': 6.0.5 '@polkadot/util': 7.9.2 @@ -19992,7 +21460,7 @@ snapshots: '@polkadot/rpc-provider@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/types': 6.0.5 '@polkadot/util': 7.9.2 '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) @@ -20044,7 +21512,7 @@ snapshots: '@polkadot/types-known@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/networks': 7.9.2 '@polkadot/types': 6.0.5 '@polkadot/util': 7.9.2 @@ -20083,7 +21551,7 @@ snapshots: '@polkadot/types@6.0.5': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/util': 7.9.2 '@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2) rxjs: 7.8.1 @@ -20103,7 +21571,7 @@ snapshots: '@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2)': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/networks': 7.9.2 '@polkadot/util': 7.9.2 '@polkadot/wasm-crypto': 4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2) @@ -20132,7 +21600,7 @@ snapshots: '@polkadot/util@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-textdecoder': 7.9.2 '@polkadot/x-textencoder': 7.9.2 '@types/bn.js': 4.11.6 @@ -20149,7 +21617,7 @@ snapshots: '@polkadot/wasm-crypto-asmjs@4.6.1(@polkadot/util@7.9.2)': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/util': 7.9.2 '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)': @@ -20169,7 +21637,7 @@ snapshots: '@polkadot/wasm-crypto-wasm@4.6.1(@polkadot/util@7.9.2)': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/util': 7.9.2 '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)': @@ -20180,7 +21648,7 @@ snapshots: '@polkadot/wasm-crypto@4.6.1(@polkadot/util@7.9.2)(@polkadot/x-randomvalues@7.9.2)': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/util': 7.9.2 '@polkadot/wasm-crypto-asmjs': 4.6.1(@polkadot/util@7.9.2) '@polkadot/wasm-crypto-wasm': 4.6.1(@polkadot/util@7.9.2) @@ -20215,7 +21683,7 @@ snapshots: '@polkadot/x-fetch@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-global': 7.9.2 '@types/node-fetch': 2.6.11 node-fetch: 2.7.0 @@ -20228,7 +21696,7 @@ snapshots: '@polkadot/x-global@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))': dependencies: @@ -20239,7 +21707,7 @@ snapshots: '@polkadot/x-randomvalues@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-global': 7.9.2 '@polkadot/x-textdecoder@12.6.2': @@ -20249,7 +21717,7 @@ snapshots: '@polkadot/x-textdecoder@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-global': 7.9.2 '@polkadot/x-textencoder@12.6.2': @@ -20259,7 +21727,7 @@ snapshots: '@polkadot/x-textencoder@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-global': 7.9.2 '@polkadot/x-ws@12.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -20273,7 +21741,7 @@ snapshots: '@polkadot/x-ws@7.9.2': dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 '@polkadot/x-global': 7.9.2 '@types/websocket': 1.0.10 websocket: 1.0.35 @@ -20895,7 +22363,7 @@ snapshots: cosmiconfig: 9.0.0(typescript@5.4.5) deepmerge: 4.3.1 fast-glob: 3.3.2 - joi: 17.13.1 + joi: 17.13.3 transitivePeerDependencies: - typescript @@ -20907,13 +22375,13 @@ snapshots: '@react-native-community/cli-debugger-ui@14.0.0': dependencies: - serve-static: 1.15.0 + serve-static: 1.16.2 transitivePeerDependencies: - supports-color '@react-native-community/cli-debugger-ui@14.0.0-alpha.11': dependencies: - serve-static: 1.15.0 + serve-static: 1.16.2 transitivePeerDependencies: - supports-color @@ -20949,14 +22417,14 @@ snapshots: chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.13.0 + envinfo: 7.14.0 execa: 5.1.1 node-stream-zip: 1.15.0 ora: 5.4.1 - semver: 7.6.0 + semver: 7.6.3 strip-ansi: 5.2.0 wcwidth: 1.0.1 - yaml: 2.5.0 + yaml: 2.5.1 transitivePeerDependencies: - typescript @@ -20986,7 +22454,7 @@ snapshots: chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 - fast-xml-parser: 4.2.5 + fast-xml-parser: 4.5.0 logkitty: 0.7.1 '@react-native-community/cli-platform-apple@13.6.4': @@ -21006,7 +22474,7 @@ snapshots: chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 - fast-xml-parser: 4.2.5 + fast-xml-parser: 4.5.0 ora: 5.4.1 '@react-native-community/cli-platform-ios@13.6.4': @@ -21045,7 +22513,7 @@ snapshots: errorhandler: 1.5.1 nocache: 3.0.4 pretty-format: 26.6.2 - serve-static: 1.15.0 + serve-static: 1.16.2 ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -21061,7 +22529,7 @@ snapshots: errorhandler: 1.5.1 nocache: 3.0.4 pretty-format: 26.6.2 - serve-static: 1.15.0 + serve-static: 1.16.2 ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -21093,7 +22561,7 @@ snapshots: mime: 2.6.0 open: 6.4.0 ora: 5.4.1 - semver: 7.6.0 + semver: 7.6.3 shell-quote: 1.8.1 sudo-prompt: 9.2.1 @@ -21106,7 +22574,7 @@ snapshots: mime: 2.6.0 open: 6.4.0 ora: 5.4.1 - semver: 7.6.0 + semver: 7.6.3 shell-quote: 1.8.1 sudo-prompt: 9.2.1 @@ -21116,7 +22584,7 @@ snapshots: '@react-native-community/cli-types@14.0.0': dependencies: - joi: 17.13.1 + joi: 17.13.3 '@react-native-community/cli@13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: @@ -21160,7 +22628,7 @@ snapshots: fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 7.6.0 + semver: 7.6.3 transitivePeerDependencies: - bufferutil - supports-color @@ -21178,9 +22646,9 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-plugin-codegen@0.75.1(@babel/preset-env@7.25.3(@babel/core@7.24.5))': + '@react-native/babel-plugin-codegen@0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7))': dependencies: - '@react-native/codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.24.5)) + '@react-native/codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7)) transitivePeerDependencies: - '@babel/preset-env' - supports-color @@ -21234,52 +22702,52 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))': - dependencies: - '@babel/core': 7.24.5 - '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.24.5) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.24.5) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.24.5) - '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.24.5) - '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.5) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.24.5) - '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.5) - '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.24.5) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.5) - '@babel/template': 7.25.0 - '@react-native/babel-plugin-codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.24.5)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.5) + '@react-native/babel-preset@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))': + dependencies: + '@babel/core': 7.25.7 + '@babel/plugin-proposal-export-default-from': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.7) + '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-async-generator-functions': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-logical-assignment-operators': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-nullish-coalescing-operator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-numeric-separator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-object-rest-spread': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-optional-catch-binding': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-optional-chaining': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-private-property-in-object': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7) + '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.7) + '@babel/template': 7.25.7 + '@react-native/babel-plugin-codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.7) react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/preset-env' @@ -21298,14 +22766,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.75.1(@babel/preset-env@7.25.3(@babel/core@7.24.5))': + '@react-native/codegen@0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7))': dependencies: - '@babel/parser': 7.25.6 - '@babel/preset-env': 7.25.3(@babel/core@7.24.5) + '@babel/parser': 7.25.7 + '@babel/preset-env': 7.25.3(@babel/core@7.25.7) glob: 7.2.3 hermes-parser: 0.22.0 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.25.3(@babel/core@7.24.5)) + jscodeshift: 0.14.0(@babel/preset-env@7.25.3(@babel/core@7.25.7)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: @@ -21333,17 +22801,17 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@react-native/community-cli-plugin@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 14.0.0-alpha.11(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@react-native-community/cli-tools': 14.0.0-alpha.11 '@react-native/dev-middleware': 0.75.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5)) + '@react-native/metro-babel-transformer': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7)) chalk: 4.1.2 execa: 5.1.1 - metro: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-config: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-core: 0.80.10 + metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-core: 0.80.12 node-fetch: 2.7.0 querystring: 0.2.1 readline: 1.3.0 @@ -21392,7 +22860,7 @@ snapshots: nullthrows: 1.1.1 open: 7.4.2 selfsigned: 2.4.1 - serve-static: 1.15.0 + serve-static: 1.16.2 ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil @@ -21418,10 +22886,10 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/metro-babel-transformer@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))': + '@react-native/metro-babel-transformer@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))': dependencies: - '@babel/core': 7.24.5 - '@react-native/babel-preset': 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5)) + '@babel/core': 7.25.7 + '@react-native/babel-preset': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7)) hermes-parser: 0.22.0 nullthrows: 1.1.1 transitivePeerDependencies: @@ -21441,12 +22909,12 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - '@react-native/virtualized-lists@0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)': + '@react-native/virtualized-lists@0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) optionalDependencies: '@types/react': 18.3.3 @@ -22437,10 +23905,10 @@ snapshots: - '@types/react' - react-dom - '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@tanstack/match-sorter-utils': 8.15.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) superjson: 1.13.3 @@ -22455,14 +23923,14 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)': + '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@tanstack/query-core': 4.36.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-native: 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) '@tanstack/react-store@0.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -22570,9 +24038,9 @@ snapshots: dependencies: '@trpc/server': 10.45.2 - '@trpc/react-query@10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@trpc/react-query@10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) '@trpc/client': 10.45.2(@trpc/server@10.45.2) '@trpc/server': 10.45.2 react: 18.3.1 @@ -23239,14 +24707,14 @@ snapshots: - debug - utf-8-validate - '@vitejs/plugin-react-swc@3.7.0(@swc/helpers@0.5.12)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0))': + '@vitejs/plugin-react-swc@3.7.0(@swc/helpers@0.5.12)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1))': dependencies: '@swc/core': 1.5.25(@swc/helpers@0.5.12) - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) transitivePeerDependencies: - '@swc/helpers' - '@vitest/coverage-istanbul@1.6.0(vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.31.0))': + '@vitest/coverage-istanbul@1.6.0(vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.34.1))': dependencies: debug: 4.3.4 istanbul-lib-coverage: 3.2.2 @@ -23257,7 +24725,7 @@ snapshots: magicast: 0.3.4 picocolors: 1.0.0 test-exclude: 6.0.0 - vitest: 1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.31.0) + vitest: 1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.34.1) transitivePeerDependencies: - supports-color @@ -24571,7 +26039,7 @@ snapshots: axios@1.7.5: dependencies: - follow-redirects: 1.15.6(debug@4.3.4) + follow-redirects: 1.15.6 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -24597,6 +26065,15 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.7): + dependencies: + '@babel/compat-data': 7.25.2 + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.5): dependencies: '@babel/core': 7.24.5 @@ -24605,6 +26082,14 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.7): + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) + core-js-compat: 3.38.0 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5): dependencies: '@babel/core': 7.24.5 @@ -24612,12 +26097,25 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.7): + dependencies: + '@babel/core': 7.25.7 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.7) + transitivePeerDependencies: + - supports-color + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.5): dependencies: '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.5) transitivePeerDependencies: - '@babel/core' + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.7): + dependencies: + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.7) + transitivePeerDependencies: + - '@babel/core' + balanced-match@1.0.2: {} balanced-match@2.0.0: {} @@ -24749,6 +26247,10 @@ snapshots: dependencies: fill-range: 7.0.1 + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + brorand@1.1.0: {} browser-headers@0.4.1: {} @@ -24812,6 +26314,13 @@ snapshots: node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) + browserslist@4.24.0: + dependencies: + caniuse-lite: 1.0.30001667 + electron-to-chromium: 1.5.35 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.0) + bs58@4.0.1: dependencies: base-x: 3.0.9 @@ -24922,6 +26431,8 @@ snapshots: caniuse-lite@1.0.30001655: {} + caniuse-lite@1.0.30001667: {} + canvas-renderer@2.1.1: {} canvas-renderer@2.2.1: @@ -25322,7 +26833,7 @@ snapshots: connect-session-sequelize@7.1.7(sequelize@6.37.3(pg@8.11.5)): dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 sequelize: 6.37.3(pg@8.11.5) transitivePeerDependencies: - supports-color @@ -25381,6 +26892,10 @@ snapshots: dependencies: browserslist: 4.23.3 + core-js-compat@3.38.1: + dependencies: + browserslist: 4.24.0 + core-js-pure@3.37.0: {} core-js@3.37.0: {} @@ -25631,12 +27146,6 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.3.4(supports-color@8.1.1): - dependencies: - ms: 2.1.2 - optionalDependencies: - supports-color: 8.1.1 - debug@4.3.5: dependencies: ms: 2.1.2 @@ -25988,6 +27497,8 @@ snapshots: electron-to-chromium@1.5.11: {} + electron-to-chromium@1.5.35: {} + elliptic@6.5.4: dependencies: bn.js: 4.12.0 @@ -26030,6 +27541,8 @@ snapshots: encodeurl@1.0.2: {} + encodeurl@2.0.0: {} + end-of-stream@1.4.4: dependencies: once: 1.4.0 @@ -26073,6 +27586,8 @@ snapshots: envinfo@7.13.0: {} + envinfo@7.14.0: {} + err-code@3.0.1: {} error-ex@1.3.2: @@ -26285,6 +27800,8 @@ snapshots: escalade@3.1.2: {} + escalade@3.2.0: {} + escape-carriage@1.3.1: {} escape-html@1.0.3: {} @@ -26935,6 +28452,10 @@ snapshots: dependencies: strnum: 1.0.5 + fast-xml-parser@4.5.0: + dependencies: + strnum: 1.0.5 + fastest-levenshtein@1.0.16: {} fastestsmallesttextencoderdecoder@1.0.22: {} @@ -27008,6 +28529,10 @@ snapshots: dependencies: to-regex-range: 5.0.1 + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + filter-obj@1.1.0: {} finalhandler@1.1.2: @@ -27121,10 +28646,6 @@ snapshots: follow-redirects@1.15.6: {} - follow-redirects@1.15.6(debug@4.3.4): - optionalDependencies: - debug: 4.3.4(supports-color@8.1.1) - for-each@0.3.3: dependencies: is-callable: 1.2.7 @@ -27167,6 +28688,12 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 + form-data@4.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + format@0.2.2: {} formdata-node@4.4.1: @@ -27488,6 +29015,8 @@ snapshots: hermes-estree@0.23.0: {} + hermes-estree@0.23.1: {} + hermes-parser@0.19.1: dependencies: hermes-estree: 0.19.1 @@ -27500,6 +29029,10 @@ snapshots: dependencies: hermes-estree: 0.23.0 + hermes-parser@0.23.1: + dependencies: + hermes-estree: 0.23.1 + hermes-profile-transformer@0.0.6: dependencies: source-map: 0.7.4 @@ -27596,7 +29129,7 @@ snapshots: http-proxy@1.18.1: dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.3.4) + follow-redirects: 1.15.6 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -28349,6 +29882,14 @@ snapshots: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 + joi@17.13.3: + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 + jose@5.3.0: {} joycon@3.1.1: {} @@ -28409,6 +29950,31 @@ snapshots: transitivePeerDependencies: - supports-color + jscodeshift@0.14.0(@babel/preset-env@7.25.3(@babel/core@7.25.7)): + dependencies: + '@babel/core': 7.24.5 + '@babel/parser': 7.25.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.5) + '@babel/preset-env': 7.25.3(@babel/core@7.25.7) + '@babel/preset-flow': 7.24.7(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.7(@babel/core@7.24.5) + '@babel/register': 7.24.6(@babel/core@7.24.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.5) + chalk: 4.1.2 + flow-parser: 0.245.0 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + jscrypto@1.0.3: {} jsdom-global@3.0.2(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): @@ -28420,12 +29986,12 @@ snapshots: cssstyle: 4.1.0 data-urls: 5.0.0 decimal.js: 10.4.3 - form-data: 4.0.0 + form-data: 4.0.1 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.12 + nwsapi: 2.2.13 parse5: 7.1.2 rrweb-cssom: 0.6.0 saxes: 6.0.0 @@ -28448,12 +30014,12 @@ snapshots: cssstyle: 4.1.0 data-urls: 5.0.0 decimal.js: 10.4.3 - form-data: 4.0.0 + form-data: 4.0.1 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.12 + nwsapi: 2.2.13 parse5: 7.1.2 rrweb-cssom: 0.6.0 saxes: 6.0.0 @@ -28476,6 +30042,8 @@ snapshots: jsesc@2.5.2: {} + jsesc@3.0.2: {} + json-buffer@3.0.1: {} json-parse-better-errors@1.0.2: {} @@ -28592,7 +30160,7 @@ snapshots: lexical@0.17.1: {} - lib0@0.2.97: + lib0@0.2.98: dependencies: isomorphic.js: 0.2.5 @@ -29096,16 +30664,35 @@ snapshots: transitivePeerDependencies: - supports-color + metro-babel-transformer@0.80.12: + dependencies: + '@babel/core': 7.25.7 + flow-enums-runtime: 0.0.6 + hermes-parser: 0.23.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-cache-key@0.80.10: dependencies: flow-enums-runtime: 0.0.6 + metro-cache-key@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + metro-cache@0.80.10: dependencies: exponential-backoff: 3.1.1 flow-enums-runtime: 0.0.6 metro-core: 0.80.10 + metro-cache@0.80.12: + dependencies: + exponential-backoff: 3.1.1 + flow-enums-runtime: 0.0.6 + metro-core: 0.80.12 + metro-config@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: connect: 3.7.0 @@ -29122,12 +30709,33 @@ snapshots: - supports-color - utf-8-validate + metro-config@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + connect: 3.7.0 + cosmiconfig: 5.2.1 + flow-enums-runtime: 0.0.6 + jest-validate: 29.7.0 + metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-cache: 0.80.12 + metro-core: 0.80.12 + metro-runtime: 0.80.12 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro-core@0.80.10: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 metro-resolver: 0.80.10 + metro-core@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + lodash.throttle: 4.1.1 + metro-resolver: 0.80.12 + metro-file-map@0.80.10: dependencies: anymatch: 3.1.3 @@ -29146,20 +30754,52 @@ snapshots: transitivePeerDependencies: - supports-color + metro-file-map@0.80.12: + dependencies: + anymatch: 3.1.3 + debug: 2.6.9 + fb-watchman: 2.0.2 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0 + micromatch: 4.0.8 + node-abort-controller: 3.1.1 + nullthrows: 1.1.1 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + transitivePeerDependencies: + - supports-color + metro-minify-terser@0.80.10: dependencies: flow-enums-runtime: 0.0.6 terser: 5.31.0 + metro-minify-terser@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + terser: 5.34.1 + metro-resolver@0.80.10: dependencies: flow-enums-runtime: 0.0.6 + metro-resolver@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + metro-runtime@0.80.10: dependencies: '@babel/runtime': 7.25.6 flow-enums-runtime: 0.0.6 + metro-runtime@0.80.12: + dependencies: + '@babel/runtime': 7.25.7 + flow-enums-runtime: 0.0.6 + metro-source-map@0.80.10: dependencies: '@babel/traverse': 7.25.6 @@ -29174,6 +30814,20 @@ snapshots: transitivePeerDependencies: - supports-color + metro-source-map@0.80.12: + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-symbolicate: 0.80.12 + nullthrows: 1.1.1 + ob1: 0.80.12 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-symbolicate@0.80.10: dependencies: flow-enums-runtime: 0.0.6 @@ -29186,6 +30840,18 @@ snapshots: transitivePeerDependencies: - supports-color + metro-symbolicate@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-source-map: 0.80.12 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-transform-plugins@0.80.10: dependencies: '@babel/core': 7.24.5 @@ -29197,6 +30863,17 @@ snapshots: transitivePeerDependencies: - supports-color + metro-transform-plugins@0.80.12: + dependencies: + '@babel/core': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/template': 7.25.7 + '@babel/traverse': 7.25.7 + flow-enums-runtime: 0.0.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-transform-worker@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.24.5 @@ -29218,6 +30895,26 @@ snapshots: - supports-color - utf-8-validate + metro-transform-worker@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@babel/core': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/types': 7.25.7 + flow-enums-runtime: 0.0.6 + metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-babel-transformer: 0.80.12 + metro-cache: 0.80.12 + metro-cache-key: 0.80.12 + metro-minify-terser: 0.80.12 + metro-source-map: 0.80.12 + metro-transform-plugins: 0.80.12 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@babel/code-frame': 7.24.7 @@ -29269,6 +30966,55 @@ snapshots: - supports-color - utf-8-validate + metro@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@babel/code-frame': 7.25.7 + '@babel/core': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/parser': 7.25.7 + '@babel/template': 7.25.7 + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 2.6.9 + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + hermes-parser: 0.23.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.12 + metro-cache: 0.80.12 + metro-cache-key: 0.80.12 + metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + metro-core: 0.80.12 + metro-file-map: 0.80.12 + metro-resolver: 0.80.12 + metro-runtime: 0.80.12 + metro-source-map: 0.80.12 + metro-symbolicate: 0.80.12 + metro-transform-plugins: 0.80.12 + metro-transform-worker: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) + mime-types: 2.1.35 + nullthrows: 1.1.1 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + micro-base@0.9.0: {} micro-ftch@0.3.1: {} @@ -29528,6 +31274,11 @@ snapshots: braces: 3.0.2 picomatch: 2.3.1 + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + miller-rabin@4.0.1: dependencies: bn.js: 4.12.0 @@ -29943,7 +31694,7 @@ snapshots: numeral@2.0.6: {} - nwsapi@2.2.12: {} + nwsapi@2.2.13: {} nyc@15.1.0: dependencies: @@ -29983,6 +31734,10 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 + ob1@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + obj-multiplex@1.0.0: dependencies: end-of-stream: 1.4.4 @@ -30428,6 +32183,8 @@ snapshots: picocolors@1.0.1: {} + picocolors@1.1.0: {} + picomatch@2.3.1: {} picomatch@4.0.2: {} @@ -30660,6 +32417,8 @@ snapshots: preact@10.23.2: {} + preact@10.24.2: {} + prebuild-install@7.1.2: dependencies: detect-libc: 2.0.3 @@ -30856,10 +32615,6 @@ snapshots: dependencies: side-channel: 1.0.6 - qs@6.13.0: - dependencies: - side-channel: 1.0.6 - qs@6.5.3: {} query-string@5.1.1: @@ -30978,7 +32733,7 @@ snapshots: dependencies: amqplib: 0.10.4 async: 3.2.5 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 forward-emitter: 0.1.1 generic-pool: 3.9.0 lodash: 4.17.21 @@ -31016,7 +32771,7 @@ snapshots: lodash.flow: 3.5.0 pure-color: 1.3.0 - react-beautiful-dnd@13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1): + react-beautiful-dnd@13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 css-box-model: 1.2.1 @@ -31024,7 +32779,7 @@ snapshots: raf-schd: 4.0.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) redux: 4.2.1 use-memo-one: 1.1.3(react@18.3.1) transitivePeerDependencies: @@ -31044,6 +32799,14 @@ snapshots: - bufferutil - utf-8-validate + react-devtools-core@5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + shell-quote: 1.8.1 + ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + react-devtools-inline@4.4.0: dependencies: es6-symbol: 3.1.4 @@ -31089,7 +32852,7 @@ snapshots: react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1): dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 html-parse-stringify: 3.0.1 i18next: 23.11.5 react: 18.3.1 @@ -31148,12 +32911,12 @@ snapshots: react: 18.3.1 react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - react-native-webrtc@118.0.7(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)): + react-native-webrtc@118.0.7(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)): dependencies: base64-js: 1.5.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 event-target-shim: 6.0.2 - react-native: 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) transitivePeerDependencies: - supports-color @@ -31214,19 +32977,19 @@ snapshots: - supports-color - utf-8-validate - react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10): + react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 14.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10) '@react-native-community/cli-platform-android': 14.0.0 '@react-native-community/cli-platform-ios': 14.0.0 '@react-native/assets-registry': 0.75.1 - '@react-native/codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.24.5)) - '@react-native/community-cli-plugin': 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native/codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7)) + '@react-native/community-cli-plugin': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.75.1 '@react-native/js-polyfills': 0.75.1 '@react-native/normalize-colors': 0.75.1 - '@react-native/virtualized-lists': 0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) + '@react-native/virtualized-lists': 0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -31239,18 +33002,18 @@ snapshots: jest-environment-node: 29.7.0 jsc-android: 250231.0.0 memoize-one: 5.2.1 - metro-runtime: 0.80.10 - metro-source-map: 0.80.10 + metro-runtime: 0.80.12 + metro-source-map: 0.80.12 mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 react: 18.3.1 - react-devtools-core: 5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) react-refresh: 0.14.2 regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 - semver: 7.6.0 + semver: 7.6.3 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -31290,7 +33053,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1): + react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 '@types/react-redux': 7.1.33 @@ -31301,7 +33064,7 @@ snapshots: react-is: 17.0.2 optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-native: 0.75.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) + react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10) react-refresh@0.14.2: {} @@ -31522,6 +33285,10 @@ snapshots: dependencies: regenerate: 1.4.2 + regenerate-unicode-properties@10.2.0: + dependencies: + regenerate: 1.4.2 + regenerate@1.4.2: {} regenerator-runtime@0.13.11: {} @@ -31530,7 +33297,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.25.6 + '@babel/runtime': 7.25.7 regexp-tree@0.1.27: {} @@ -31550,6 +33317,21 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 + regexpu-core@6.1.1: + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.11.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.2.0 + + regjsgen@0.8.0: {} + + regjsparser@0.11.1: + dependencies: + jsesc: 3.0.2 + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 @@ -31850,6 +33632,8 @@ snapshots: dependencies: lru-cache: 6.0.0 + semver@7.6.3: {} + send@0.18.0: dependencies: debug: 2.6.9 @@ -31868,6 +33652,24 @@ snapshots: transitivePeerDependencies: - supports-color + send@0.19.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + sequelize-cli@6.6.2: dependencies: cli-color: 2.0.4 @@ -31884,7 +33686,7 @@ snapshots: dependencies: '@types/debug': 4.1.12 '@types/validator': 13.11.9 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 dottie: 2.0.6 inflection: 1.13.4 lodash: 4.17.21 @@ -31914,6 +33716,15 @@ snapshots: transitivePeerDependencies: - supports-color + serve-static@1.16.2: + dependencies: + encodeurl: 2.0.0 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.19.0 + transitivePeerDependencies: + - supports-color + server-only@0.0.1: {} set-blocking@2.0.0: {} @@ -32452,7 +34263,7 @@ snapshots: dependencies: component-emitter: 1.3.1 cookiejar: 2.1.4 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 fast-safe-stringify: 2.1.1 form-data: 3.0.1 formidable: 1.2.6 @@ -32640,6 +34451,13 @@ snapshots: commander: 2.20.3 source-map-support: 0.5.21 + terser@5.34.1: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.12.1 + commander: 2.20.3 + source-map-support: 0.5.21 + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 @@ -33040,6 +34858,8 @@ snapshots: unicode-match-property-value-ecmascript@2.1.0: {} + unicode-match-property-value-ecmascript@2.2.0: {} + unicode-property-aliases-ecmascript@2.1.0: {} unidiff@1.0.4: @@ -33123,6 +34943,12 @@ snapshots: escalade: 3.1.2 picocolors: 1.0.1 + update-browserslist-db@1.1.1(browserslist@4.24.0): + dependencies: + browserslist: 4.24.0 + escalade: 3.2.0 + picocolors: 1.1.0 + uqr@0.1.2: {} uri-js@4.4.1: @@ -33309,13 +35135,13 @@ snapshots: - rollup - supports-color - vite-node@1.6.0(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0): + vite-node@1.6.0(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1): dependencies: cac: 6.7.14 debug: 4.3.5 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) transitivePeerDependencies: - '@types/node' - less @@ -33326,7 +35152,7 @@ snapshots: - supports-color - terser - vite-plugin-html@3.2.2(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)): + vite-plugin-html@3.2.2(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)): dependencies: '@rollup/pluginutils': 4.2.1 colorette: 2.0.20 @@ -33340,28 +35166,28 @@ snapshots: html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 pathe: 0.2.0 - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) - vite-plugin-node-polyfills@0.22.0(rollup@4.18.0)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)): + vite-plugin-node-polyfills@0.22.0(rollup@4.18.0)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.18.0) node-stdlib-browser: 1.2.0 - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) transitivePeerDependencies: - rollup - vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0)): + vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1)): dependencies: debug: 4.3.4 globrex: 0.1.2 tsconfck: 3.1.0(typescript@5.4.5) optionalDependencies: - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) transitivePeerDependencies: - supports-color - typescript - vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0): + vite@5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1): dependencies: esbuild: 0.20.2 postcss: 8.4.38 @@ -33370,9 +35196,9 @@ snapshots: '@types/node': 20.12.10 fsevents: 2.3.3 sass: 1.77.0 - terser: 5.31.0 + terser: 5.34.1 - vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.31.0): + vitest@1.6.0(@types/node@20.12.10)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(sass@1.77.0)(terser@5.34.1): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 @@ -33391,8 +35217,8 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.8.0 tinypool: 0.8.4 - vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) - vite-node: 1.6.0(@types/node@20.12.10)(sass@1.77.0)(terser@5.31.0) + vite: 5.2.12(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) + vite-node: 1.6.0(@types/node@20.12.10)(sass@1.77.0)(terser@5.34.1) why-is-node-running: 2.2.2 optionalDependencies: '@types/node': 20.12.10 @@ -34222,6 +36048,8 @@ snapshots: yaml@2.5.0: {} + yaml@2.5.1: {} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 @@ -34269,7 +36097,7 @@ snapshots: yjs@13.6.18: dependencies: - lib0: 0.2.97 + lib0: 0.2.98 yn@3.1.1: {}