From d5700b5c68c39025d04ba8d4edcfd6e1c1cf245a Mon Sep 17 00:00:00 2001 From: Hadrien Froger Date: Fri, 29 Nov 2024 15:40:04 +0000 Subject: [PATCH] :bookmark: (v0.0.3) users and permissions --- .gitlab-ci.yml | 4 +- Gemfile.lock | 2 +- bin/gen-node-client | 3 +- config/routes.rb | 1 + contrib/decidim-node-client/api.ts | 1694 +++++--- contrib/decidim-node-client/base.ts | 5 +- contrib/decidim-node-client/package.json | 4 +- contrib/decidim-node-client/packup.config.ts | 1 + contrib/decidim-node-client/tsconfig.json | 10 +- lib/decidim/rest_full/version.rb | 2 +- package.json | 2 +- .../rest_full/public/components_index_spec.rb | 2 +- .../rest_full/public/components_show_spec.rb | 2 +- .../rest_full/public/spaces_index_spec.rb | 2 +- .../system/organization_index_spec.rb | 2 +- .../rest_full/system/users_index_spec.rb | 2 +- spec/swagger_helper.rb | 2 +- website/package.json | 2 +- website/static/api-docs.html | 16 +- website/static/openapi.json | 2125 +++++++--- yarn.lock | 3546 +++++++---------- 21 files changed, 4398 insertions(+), 3031 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d10c288..70d56b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -135,6 +135,7 @@ decidim-client::publish: variables: CI: 1 before_script: + - apt-get update -y && apt-get install -y jq - cd contrib/decidim-node-client - corepack enable - yarn @@ -147,5 +148,6 @@ decidim-client::publish: - touch .npmrc - echo "@${CI_PROJECT_ROOT_NAMESPACE}:registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/" >> .npmrc - echo "${CI_API_V4_URL#http*:}/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=\${CI_JOB_TOKEN}" >> .npmrc - - npm publish --non-interactive --registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/ + - PACKAGE_VERSION=$(jq -r '.version' package.json); + - npm publish --non-interactive --access=public --tag$PACKAGE_VERSION --registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/ extends: .publication_rules diff --git a/Gemfile.lock b/Gemfile.lock index fa85f88..2ce1828 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - decidim-rest_full (0.0.2) + decidim-rest_full (0.0.3) api-pagination (~> 6.0) cancancan decidim-admin (>= 0.28, < 0.30) diff --git a/bin/gen-node-client b/bin/gen-node-client index 16a957a..1314785 100755 --- a/bin/gen-node-client +++ b/bin/gen-node-client @@ -3,10 +3,11 @@ # Regenerate the openapi spec yarn gen:openapi-spec # Regenerate the node client (typescript+axios) -yarn openapi-generator-cli generate -i ./website/static/openapi.json -o ./contrib/decidim-node-client -g typescript-axios --additional-properties=paramNaming=camelCase,axiosVersion=1.7.7 +yarn openapi-generator-cli generate -i ./website/static/openapi.json -o ./contrib/decidim-node-client -g typescript-axios --additional-properties=useSingleRequestParameter=true,paramNaming=camelCase,axiosVersion=1.7.7 # Build node client cd contrib/decidim-node-client +rm -rf ./dist yarn format yarn build diff --git a/config/routes.rb b/config/routes.rb index 86fca3a..719995c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -13,6 +13,7 @@ namespace :api do namespace :rest_full do scope "v#{Decidim::RestFull.major_minor_version}" do + post "/oauth/token", to: "/doorkeeper/tokens#create" namespace :system do resources :organizations, only: [:index] resources :users, only: [:index] diff --git a/contrib/decidim-node-client/api.ts b/contrib/decidim-node-client/api.ts index d43be00..7187121 100644 --- a/contrib/decidim-node-client/api.ts +++ b/contrib/decidim-node-client/api.ts @@ -915,12 +915,288 @@ export interface TranslatedProp { * @memberof TranslatedProp */ en?: string; + /** + * Translation in bg + * @type {string} + * @memberof TranslatedProp + */ + bg?: string; + /** + * Translation in ar + * @type {string} + * @memberof TranslatedProp + */ + ar?: string; + /** + * Translation in ca + * @type {string} + * @memberof TranslatedProp + */ + ca?: string; + /** + * Translation in cs + * @type {string} + * @memberof TranslatedProp + */ + cs?: string; + /** + * Translation in da + * @type {string} + * @memberof TranslatedProp + */ + da?: string; + /** + * Translation in de + * @type {string} + * @memberof TranslatedProp + */ + de?: string; + /** + * Translation in el + * @type {string} + * @memberof TranslatedProp + */ + el?: string; + /** + * Translation in eo + * @type {string} + * @memberof TranslatedProp + */ + eo?: string; + /** + * Translation in es + * @type {string} + * @memberof TranslatedProp + */ + es?: string; + /** + * Translation in es-MX + * @type {string} + * @memberof TranslatedProp + */ + "es-MX"?: string; + /** + * Translation in es-PY + * @type {string} + * @memberof TranslatedProp + */ + "es-PY"?: string; + /** + * Translation in et + * @type {string} + * @memberof TranslatedProp + */ + et?: string; + /** + * Translation in eu + * @type {string} + * @memberof TranslatedProp + */ + eu?: string; + /** + * Translation in fa + * @type {string} + * @memberof TranslatedProp + */ + fa?: string; + /** + * Translation in fi-pl + * @type {string} + * @memberof TranslatedProp + */ + "fi-pl"?: string; + /** + * Translation in fi + * @type {string} + * @memberof TranslatedProp + */ + fi?: string; /** * Translation in fr * @type {string} * @memberof TranslatedProp */ fr?: string; + /** + * Translation in fr-CA + * @type {string} + * @memberof TranslatedProp + */ + "fr-CA"?: string; + /** + * Translation in ga + * @type {string} + * @memberof TranslatedProp + */ + ga?: string; + /** + * Translation in gl + * @type {string} + * @memberof TranslatedProp + */ + gl?: string; + /** + * Translation in hr + * @type {string} + * @memberof TranslatedProp + */ + hr?: string; + /** + * Translation in hu + * @type {string} + * @memberof TranslatedProp + */ + hu?: string; + /** + * Translation in id + * @type {string} + * @memberof TranslatedProp + */ + id?: string; + /** + * Translation in is + * @type {string} + * @memberof TranslatedProp + */ + is?: string; + /** + * Translation in it + * @type {string} + * @memberof TranslatedProp + */ + it?: string; + /** + * Translation in ja + * @type {string} + * @memberof TranslatedProp + */ + ja?: string; + /** + * Translation in ko + * @type {string} + * @memberof TranslatedProp + */ + ko?: string; + /** + * Translation in lb + * @type {string} + * @memberof TranslatedProp + */ + lb?: string; + /** + * Translation in lt + * @type {string} + * @memberof TranslatedProp + */ + lt?: string; + /** + * Translation in lv + * @type {string} + * @memberof TranslatedProp + */ + lv?: string; + /** + * Translation in mt + * @type {string} + * @memberof TranslatedProp + */ + mt?: string; + /** + * Translation in nl + * @type {string} + * @memberof TranslatedProp + */ + nl?: string; + /** + * Translation in no + * @type {string} + * @memberof TranslatedProp + */ + no?: string; + /** + * Translation in pl + * @type {string} + * @memberof TranslatedProp + */ + pl?: string; + /** + * Translation in pt + * @type {string} + * @memberof TranslatedProp + */ + pt?: string; + /** + * Translation in pt-BR + * @type {string} + * @memberof TranslatedProp + */ + "pt-BR"?: string; + /** + * Translation in ro + * @type {string} + * @memberof TranslatedProp + */ + ro?: string; + /** + * Translation in ru + * @type {string} + * @memberof TranslatedProp + */ + ru?: string; + /** + * Translation in sk + * @type {string} + * @memberof TranslatedProp + */ + sk?: string; + /** + * Translation in sl + * @type {string} + * @memberof TranslatedProp + */ + sl?: string; + /** + * Translation in sr + * @type {string} + * @memberof TranslatedProp + */ + sr?: string; + /** + * Translation in sv + * @type {string} + * @memberof TranslatedProp + */ + sv?: string; + /** + * Translation in tr + * @type {string} + * @memberof TranslatedProp + */ + tr?: string; + /** + * Translation in uk + * @type {string} + * @memberof TranslatedProp + */ + uk?: string; + /** + * Translation in vi + * @type {string} + * @memberof TranslatedProp + */ + vi?: string; + /** + * Translation in zh-CN + * @type {string} + * @memberof TranslatedProp + */ + "zh-CN"?: string; + /** + * Translation in zh-TW + * @type {string} + * @memberof TranslatedProp + */ + "zh-TW"?: string; } /** * @@ -1024,7 +1300,53 @@ export interface UserAttributes { export const UserAttributesLocaleEnum = { En: "en", + Bg: "bg", + Ar: "ar", + Ca: "ca", + Cs: "cs", + Da: "da", + De: "de", + El: "el", + Eo: "eo", + Es: "es", + EsMx: "es-MX", + EsPy: "es-PY", + Et: "et", + Eu: "eu", + Fa: "fa", + FiPl: "fi-pl", + Fi: "fi", Fr: "fr", + FrCa: "fr-CA", + Ga: "ga", + Gl: "gl", + Hr: "hr", + Hu: "hu", + Id: "id", + Is: "is", + It: "it", + Ja: "ja", + Ko: "ko", + Lb: "lb", + Lt: "lt", + Lv: "lv", + Mt: "mt", + Nl: "nl", + No: "no", + Pl: "pl", + Pt: "pt", + PtBr: "pt-BR", + Ro: "ro", + Ru: "ru", + Sk: "sk", + Sl: "sl", + Sr: "sr", + Sv: "sv", + Tr: "tr", + Uk: "uk", + Vi: "vi", + ZhCn: "zh-CN", + ZhTw: "zh-TW", } as const; export type UserAttributesLocaleEnum = @@ -1276,21 +1598,35 @@ export const OAuthApiFactory = function ( /** * * @summary Request a OAuth token throught ROPC - * @param {OauthGrantParam} oauthGrantParam + * @param {OAuthApiOauthTokenPostRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ oauthTokenPost( - oauthGrantParam: OauthGrantParam, + requestParameters: OAuthApiOauthTokenPostRequest, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .oauthTokenPost(oauthGrantParam, options) + .oauthTokenPost(requestParameters.oauthGrantParam, options) .then((request) => request(axios, basePath)); }, }; }; +/** + * Request parameters for oauthTokenPost operation in OAuthApi. + * @export + * @interface OAuthApiOauthTokenPostRequest + */ +export interface OAuthApiOauthTokenPostRequest { + /** + * + * @type {OauthGrantParam} + * @memberof OAuthApiOauthTokenPost + */ + readonly oauthGrantParam: OauthGrantParam; +} + /** * OAuthApi - object-oriented interface * @export @@ -1301,17 +1637,17 @@ export class OAuthApi extends BaseAPI { /** * * @summary Request a OAuth token throught ROPC - * @param {OauthGrantParam} oauthGrantParam + * @param {OAuthApiOauthTokenPostRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OAuthApi */ public oauthTokenPost( - oauthGrantParam: OauthGrantParam, + requestParameters: OAuthApiOauthTokenPostRequest, options?: RawAxiosRequestConfig, ) { return OAuthApiFp(this.configuration) - .oauthTokenPost(oauthGrantParam, options) + .oauthTokenPost(requestParameters.oauthGrantParam, options) .then((request) => request(this.axios, this.basePath)); } } @@ -1327,9 +1663,9 @@ export const PublicApiAxiosParamCreator = function ( /** * * @summary List Components - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] + * @param {Array} [locales] + * @param {Array} [filterManifestNameNotIn] + * @param {Array} [filterManifestNameIn] * @param {string} [filterManifestNameEq] * @param {string} [filterManifestNameNotEq] * @param {Array} [filterParticipatorySpaceIdIn] @@ -1345,10 +1681,10 @@ export const PublicApiAxiosParamCreator = function ( * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicComponentsGet: async ( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, + publicComponentsGet: async ( + locales?: Array, + filterManifestNameNotIn?: Array, + filterManifestNameIn?: Array, filterManifestNameEq?: string, filterManifestNameNotEq?: string, filterParticipatorySpaceIdIn?: Array, @@ -1363,7 +1699,7 @@ export const PublicApiAxiosParamCreator = function ( perPage?: number, options: RawAxiosRequestConfig = {}, ): Promise => { - const localVarPath = `/api/rest_full/v0.0/public/components`; + const localVarPath = `/public/components`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -1473,18 +1809,18 @@ export const PublicApiAxiosParamCreator = function ( * * @summary Show a Component * @param {number} id - * @param {Array} [locales] + * @param {Array} [locales] * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicComponentsIdGet: async ( + publicComponentsIdGet: async ( id: number, - locales?: Array, + locales?: Array, options: RawAxiosRequestConfig = {}, ): Promise => { // verify required parameter 'id' is not null or undefined - assertParamExists("apiRestFullV00PublicComponentsIdGet", "id", id); - const localVarPath = `/api/rest_full/v0.0/public/components/{id}`.replace( + assertParamExists("publicComponentsIdGet", "id", id); + const localVarPath = `/public/components/{id}`.replace( `{${"id"}}`, encodeURIComponent(String(id)), ); @@ -1532,9 +1868,9 @@ export const PublicApiAxiosParamCreator = function ( /** * * @summary List Participatory Spaces - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] + * @param {Array} [locales] + * @param {Array} [filterManifestNameNotIn] + * @param {Array} [filterManifestNameIn] * @param {string} [filterManifestNameEq] * @param {string} [filterManifestNameNotEq] * @param {Array} [filterTitleNotIn] @@ -1545,17 +1881,17 @@ export const PublicApiAxiosParamCreator = function ( * @param {string} [filterTitleNotEq] * @param {string} [filterTitleMatches] * @param {string} [filterTitleDoesNotMatch] - * @param {ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] - * @param {ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] + * @param {PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] + * @param {PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] * @param {number} [page] Page number for pagination * @param {number} [perPage] Number of items per page * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicSpacesGet: async ( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, + publicSpacesGet: async ( + locales?: Array, + filterManifestNameNotIn?: Array, + filterManifestNameIn?: Array, filterManifestNameEq?: string, filterManifestNameNotEq?: string, filterTitleNotIn?: Array, @@ -1566,13 +1902,13 @@ export const PublicApiAxiosParamCreator = function ( filterTitleNotEq?: string, filterTitleMatches?: string, filterTitleDoesNotMatch?: string, - filterTitlePresent?: ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum, - filterTitleBlank?: ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum, + filterTitlePresent?: PublicSpacesGetFilterTitlePresentEnum, + filterTitleBlank?: PublicSpacesGetFilterTitleBlankEnum, page?: number, perPage?: number, options: RawAxiosRequestConfig = {}, ): Promise => { - const localVarPath = `/api/rest_full/v0.0/public/spaces`; + const localVarPath = `/public/spaces`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -1696,9 +2032,9 @@ export const PublicApiFp = function (configuration?: Configuration) { /** * * @summary List Components - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] + * @param {Array} [locales] + * @param {Array} [filterManifestNameNotIn] + * @param {Array} [filterManifestNameIn] * @param {string} [filterManifestNameEq] * @param {string} [filterManifestNameNotEq] * @param {Array} [filterParticipatorySpaceIdIn] @@ -1714,10 +2050,10 @@ export const PublicApiFp = function (configuration?: Configuration) { * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async apiRestFullV00PublicComponentsGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, + async publicComponentsGet( + locales?: Array, + filterManifestNameNotIn?: Array, + filterManifestNameIn?: Array, filterManifestNameEq?: string, filterManifestNameNotEq?: string, filterParticipatorySpaceIdIn?: Array, @@ -1738,7 +2074,7 @@ export const PublicApiFp = function (configuration?: Configuration) { ) => AxiosPromise > { const localVarAxiosArgs = - await localVarAxiosParamCreator.apiRestFullV00PublicComponentsGet( + await localVarAxiosParamCreator.publicComponentsGet( locales, filterManifestNameNotIn, filterManifestNameIn, @@ -1758,7 +2094,7 @@ export const PublicApiFp = function (configuration?: Configuration) { ); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = - operationServerMap["PublicApi.apiRestFullV00PublicComponentsGet"]?.[ + operationServerMap["PublicApi.publicComponentsGet"]?.[ localVarOperationServerIndex ]?.url; return (axios, basePath) => @@ -1773,13 +2109,13 @@ export const PublicApiFp = function (configuration?: Configuration) { * * @summary Show a Component * @param {number} id - * @param {Array} [locales] + * @param {Array} [locales] * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async apiRestFullV00PublicComponentsIdGet( + async publicComponentsIdGet( id: number, - locales?: Array, + locales?: Array, options?: RawAxiosRequestConfig, ): Promise< ( @@ -1788,14 +2124,14 @@ export const PublicApiFp = function (configuration?: Configuration) { ) => AxiosPromise > { const localVarAxiosArgs = - await localVarAxiosParamCreator.apiRestFullV00PublicComponentsIdGet( + await localVarAxiosParamCreator.publicComponentsIdGet( id, locales, options, ); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = - operationServerMap["PublicApi.apiRestFullV00PublicComponentsIdGet"]?.[ + operationServerMap["PublicApi.publicComponentsIdGet"]?.[ localVarOperationServerIndex ]?.url; return (axios, basePath) => @@ -1809,9 +2145,9 @@ export const PublicApiFp = function (configuration?: Configuration) { /** * * @summary List Participatory Spaces - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] + * @param {Array} [locales] + * @param {Array} [filterManifestNameNotIn] + * @param {Array} [filterManifestNameIn] * @param {string} [filterManifestNameEq] * @param {string} [filterManifestNameNotEq] * @param {Array} [filterTitleNotIn] @@ -1822,17 +2158,17 @@ export const PublicApiFp = function (configuration?: Configuration) { * @param {string} [filterTitleNotEq] * @param {string} [filterTitleMatches] * @param {string} [filterTitleDoesNotMatch] - * @param {ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] - * @param {ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] + * @param {PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] + * @param {PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] * @param {number} [page] Page number for pagination * @param {number} [perPage] Number of items per page * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async apiRestFullV00PublicSpacesGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, + async publicSpacesGet( + locales?: Array, + filterManifestNameNotIn?: Array, + filterManifestNameIn?: Array, filterManifestNameEq?: string, filterManifestNameNotEq?: string, filterTitleNotIn?: Array, @@ -1843,38 +2179,37 @@ export const PublicApiFp = function (configuration?: Configuration) { filterTitleNotEq?: string, filterTitleMatches?: string, filterTitleDoesNotMatch?: string, - filterTitlePresent?: ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum, - filterTitleBlank?: ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum, + filterTitlePresent?: PublicSpacesGetFilterTitlePresentEnum, + filterTitleBlank?: PublicSpacesGetFilterTitleBlankEnum, page?: number, perPage?: number, options?: RawAxiosRequestConfig, ): Promise< (axios?: AxiosInstance, basePath?: string) => AxiosPromise > { - const localVarAxiosArgs = - await localVarAxiosParamCreator.apiRestFullV00PublicSpacesGet( - locales, - filterManifestNameNotIn, - filterManifestNameIn, - filterManifestNameEq, - filterManifestNameNotEq, - filterTitleNotIn, - filterTitleIn, - filterTitleStart, - filterTitleNotStart, - filterTitleEq, - filterTitleNotEq, - filterTitleMatches, - filterTitleDoesNotMatch, - filterTitlePresent, - filterTitleBlank, - page, - perPage, - options, - ); + const localVarAxiosArgs = await localVarAxiosParamCreator.publicSpacesGet( + locales, + filterManifestNameNotIn, + filterManifestNameIn, + filterManifestNameEq, + filterManifestNameNotEq, + filterTitleNotIn, + filterTitleIn, + filterTitleStart, + filterTitleNotStart, + filterTitleEq, + filterTitleNotEq, + filterTitleMatches, + filterTitleDoesNotMatch, + filterTitlePresent, + filterTitleBlank, + page, + perPage, + options, + ); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = - operationServerMap["PublicApi.apiRestFullV00PublicSpacesGet"]?.[ + operationServerMap["PublicApi.publicSpacesGet"]?.[ localVarOperationServerIndex ]?.url; return (axios, basePath) => @@ -1902,59 +2237,31 @@ export const PublicApiFactory = function ( /** * * @summary List Components - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] - * @param {string} [filterManifestNameEq] - * @param {string} [filterManifestNameNotEq] - * @param {Array} [filterParticipatorySpaceIdIn] - * @param {string} [filterParticipatorySpaceIdEq] - * @param {Array} [filterParticipatorySpaceTypeIn] - * @param {string} [filterParticipatorySpaceTypeEq] - * @param {string} [filterNameStart] - * @param {string} [filterNameEq] - * @param {string} [filterNameNotEq] - * @param {string} [filterNameMatches] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {PublicApiPublicComponentsGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicComponentsGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, - filterManifestNameEq?: string, - filterManifestNameNotEq?: string, - filterParticipatorySpaceIdIn?: Array, - filterParticipatorySpaceIdEq?: string, - filterParticipatorySpaceTypeIn?: Array, - filterParticipatorySpaceTypeEq?: string, - filterNameStart?: string, - filterNameEq?: string, - filterNameNotEq?: string, - filterNameMatches?: string, - page?: number, - perPage?: number, + publicComponentsGet( + requestParameters: PublicApiPublicComponentsGetRequest = {}, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .apiRestFullV00PublicComponentsGet( - locales, - filterManifestNameNotIn, - filterManifestNameIn, - filterManifestNameEq, - filterManifestNameNotEq, - filterParticipatorySpaceIdIn, - filterParticipatorySpaceIdEq, - filterParticipatorySpaceTypeIn, - filterParticipatorySpaceTypeEq, - filterNameStart, - filterNameEq, - filterNameNotEq, - filterNameMatches, - page, - perPage, + .publicComponentsGet( + requestParameters.locales, + requestParameters.filterManifestNameNotIn, + requestParameters.filterManifestNameIn, + requestParameters.filterManifestNameEq, + requestParameters.filterManifestNameNotEq, + requestParameters.filterParticipatorySpaceIdIn, + requestParameters.filterParticipatorySpaceIdEq, + requestParameters.filterParticipatorySpaceTypeIn, + requestParameters.filterParticipatorySpaceTypeEq, + requestParameters.filterNameStart, + requestParameters.filterNameEq, + requestParameters.filterNameNotEq, + requestParameters.filterNameMatches, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(axios, basePath)); @@ -1962,82 +2269,52 @@ export const PublicApiFactory = function ( /** * * @summary Show a Component - * @param {number} id - * @param {Array} [locales] + * @param {PublicApiPublicComponentsIdGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicComponentsIdGet( - id: number, - locales?: Array, + publicComponentsIdGet( + requestParameters: PublicApiPublicComponentsIdGetRequest, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .apiRestFullV00PublicComponentsIdGet(id, locales, options) + .publicComponentsIdGet( + requestParameters.id, + requestParameters.locales, + options, + ) .then((request) => request(axios, basePath)); }, /** * * @summary List Participatory Spaces - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] - * @param {string} [filterManifestNameEq] - * @param {string} [filterManifestNameNotEq] - * @param {Array} [filterTitleNotIn] - * @param {Array} [filterTitleIn] - * @param {string} [filterTitleStart] - * @param {string} [filterTitleNotStart] - * @param {string} [filterTitleEq] - * @param {string} [filterTitleNotEq] - * @param {string} [filterTitleMatches] - * @param {string} [filterTitleDoesNotMatch] - * @param {ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] - * @param {ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {PublicApiPublicSpacesGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00PublicSpacesGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, - filterManifestNameEq?: string, - filterManifestNameNotEq?: string, - filterTitleNotIn?: Array, - filterTitleIn?: Array, - filterTitleStart?: string, - filterTitleNotStart?: string, - filterTitleEq?: string, - filterTitleNotEq?: string, - filterTitleMatches?: string, - filterTitleDoesNotMatch?: string, - filterTitlePresent?: ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum, - filterTitleBlank?: ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum, - page?: number, - perPage?: number, + publicSpacesGet( + requestParameters: PublicApiPublicSpacesGetRequest = {}, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .apiRestFullV00PublicSpacesGet( - locales, - filterManifestNameNotIn, - filterManifestNameIn, - filterManifestNameEq, - filterManifestNameNotEq, - filterTitleNotIn, - filterTitleIn, - filterTitleStart, - filterTitleNotStart, - filterTitleEq, - filterTitleNotEq, - filterTitleMatches, - filterTitleDoesNotMatch, - filterTitlePresent, - filterTitleBlank, - page, - perPage, + .publicSpacesGet( + requestParameters.locales, + requestParameters.filterManifestNameNotIn, + requestParameters.filterManifestNameIn, + requestParameters.filterManifestNameEq, + requestParameters.filterManifestNameNotEq, + requestParameters.filterTitleNotIn, + requestParameters.filterTitleIn, + requestParameters.filterTitleStart, + requestParameters.filterTitleNotStart, + requestParameters.filterTitleEq, + requestParameters.filterTitleNotEq, + requestParameters.filterTitleMatches, + requestParameters.filterTitleDoesNotMatch, + requestParameters.filterTitlePresent, + requestParameters.filterTitleBlank, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(axios, basePath)); @@ -2045,6 +2322,265 @@ export const PublicApiFactory = function ( }; }; +/** + * Request parameters for publicComponentsGet operation in PublicApi. + * @export + * @interface PublicApiPublicComponentsGetRequest + */ +export interface PublicApiPublicComponentsGetRequest { + /** + * + * @type {Array<'en' | 'bg' | 'ar' | 'ca' | 'cs' | 'da' | 'de' | 'el' | 'eo' | 'es' | 'es-MX' | 'es-PY' | 'et' | 'eu' | 'fa' | 'fi-pl' | 'fi' | 'fr' | 'fr-CA' | 'ga' | 'gl' | 'hr' | 'hu' | 'id' | 'is' | 'it' | 'ja' | 'ko' | 'lb' | 'lt' | 'lv' | 'mt' | 'nl' | 'no' | 'pl' | 'pt' | 'pt-BR' | 'ro' | 'ru' | 'sk' | 'sl' | 'sr' | 'sv' | 'tr' | 'uk' | 'vi' | 'zh-CN' | 'zh-TW'>} + * @memberof PublicApiPublicComponentsGet + */ + readonly locales?: Array; + + /** + * + * @type {Array<'pages' | 'proposals' | 'meetings' | 'budgets' | 'surveys' | 'accountability' | 'debates' | 'sortitions' | 'blogs'>} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterManifestNameNotIn?: Array; + + /** + * + * @type {Array<'pages' | 'proposals' | 'meetings' | 'budgets' | 'surveys' | 'accountability' | 'debates' | 'sortitions' | 'blogs'>} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterManifestNameIn?: Array; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterManifestNameEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterManifestNameNotEq?: string; + + /** + * + * @type {Array} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterParticipatorySpaceIdIn?: Array; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterParticipatorySpaceIdEq?: string; + + /** + * + * @type {Array} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterParticipatorySpaceTypeIn?: Array; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterParticipatorySpaceTypeEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterNameStart?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterNameEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterNameNotEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicComponentsGet + */ + readonly filterNameMatches?: string; + + /** + * Page number for pagination + * @type {number} + * @memberof PublicApiPublicComponentsGet + */ + readonly page?: number; + + /** + * Number of items per page + * @type {number} + * @memberof PublicApiPublicComponentsGet + */ + readonly perPage?: number; +} + +/** + * Request parameters for publicComponentsIdGet operation in PublicApi. + * @export + * @interface PublicApiPublicComponentsIdGetRequest + */ +export interface PublicApiPublicComponentsIdGetRequest { + /** + * + * @type {number} + * @memberof PublicApiPublicComponentsIdGet + */ + readonly id: number; + + /** + * + * @type {Array<'en' | 'bg' | 'ar' | 'ca' | 'cs' | 'da' | 'de' | 'el' | 'eo' | 'es' | 'es-MX' | 'es-PY' | 'et' | 'eu' | 'fa' | 'fi-pl' | 'fi' | 'fr' | 'fr-CA' | 'ga' | 'gl' | 'hr' | 'hu' | 'id' | 'is' | 'it' | 'ja' | 'ko' | 'lb' | 'lt' | 'lv' | 'mt' | 'nl' | 'no' | 'pl' | 'pt' | 'pt-BR' | 'ro' | 'ru' | 'sk' | 'sl' | 'sr' | 'sv' | 'tr' | 'uk' | 'vi' | 'zh-CN' | 'zh-TW'>} + * @memberof PublicApiPublicComponentsIdGet + */ + readonly locales?: Array; +} + +/** + * Request parameters for publicSpacesGet operation in PublicApi. + * @export + * @interface PublicApiPublicSpacesGetRequest + */ +export interface PublicApiPublicSpacesGetRequest { + /** + * + * @type {Array<'en' | 'bg' | 'ar' | 'ca' | 'cs' | 'da' | 'de' | 'el' | 'eo' | 'es' | 'es-MX' | 'es-PY' | 'et' | 'eu' | 'fa' | 'fi-pl' | 'fi' | 'fr' | 'fr-CA' | 'ga' | 'gl' | 'hr' | 'hu' | 'id' | 'is' | 'it' | 'ja' | 'ko' | 'lb' | 'lt' | 'lv' | 'mt' | 'nl' | 'no' | 'pl' | 'pt' | 'pt-BR' | 'ro' | 'ru' | 'sk' | 'sl' | 'sr' | 'sv' | 'tr' | 'uk' | 'vi' | 'zh-CN' | 'zh-TW'>} + * @memberof PublicApiPublicSpacesGet + */ + readonly locales?: Array; + + /** + * + * @type {Array<'participatory_processes' | 'assemblies'>} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterManifestNameNotIn?: Array; + + /** + * + * @type {Array<'participatory_processes' | 'assemblies'>} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterManifestNameIn?: Array; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterManifestNameEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterManifestNameNotEq?: string; + + /** + * + * @type {Array} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleNotIn?: Array; + + /** + * + * @type {Array} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleIn?: Array; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleStart?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleNotStart?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleNotEq?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleMatches?: string; + + /** + * + * @type {string} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleDoesNotMatch?: string; + + /** + * + * @type {'1' | '0'} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitlePresent?: PublicSpacesGetFilterTitlePresentEnum; + + /** + * + * @type {'1' | '0'} + * @memberof PublicApiPublicSpacesGet + */ + readonly filterTitleBlank?: PublicSpacesGetFilterTitleBlankEnum; + + /** + * Page number for pagination + * @type {number} + * @memberof PublicApiPublicSpacesGet + */ + readonly page?: number; + + /** + * Number of items per page + * @type {number} + * @memberof PublicApiPublicSpacesGet + */ + readonly perPage?: number; +} + /** * PublicApi - object-oriented interface * @export @@ -2055,60 +2591,32 @@ export class PublicApi extends BaseAPI { /** * * @summary List Components - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] - * @param {string} [filterManifestNameEq] - * @param {string} [filterManifestNameNotEq] - * @param {Array} [filterParticipatorySpaceIdIn] - * @param {string} [filterParticipatorySpaceIdEq] - * @param {Array} [filterParticipatorySpaceTypeIn] - * @param {string} [filterParticipatorySpaceTypeEq] - * @param {string} [filterNameStart] - * @param {string} [filterNameEq] - * @param {string} [filterNameNotEq] - * @param {string} [filterNameMatches] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {PublicApiPublicComponentsGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PublicApi */ - public apiRestFullV00PublicComponentsGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, - filterManifestNameEq?: string, - filterManifestNameNotEq?: string, - filterParticipatorySpaceIdIn?: Array, - filterParticipatorySpaceIdEq?: string, - filterParticipatorySpaceTypeIn?: Array, - filterParticipatorySpaceTypeEq?: string, - filterNameStart?: string, - filterNameEq?: string, - filterNameNotEq?: string, - filterNameMatches?: string, - page?: number, - perPage?: number, + public publicComponentsGet( + requestParameters: PublicApiPublicComponentsGetRequest = {}, options?: RawAxiosRequestConfig, ) { return PublicApiFp(this.configuration) - .apiRestFullV00PublicComponentsGet( - locales, - filterManifestNameNotIn, - filterManifestNameIn, - filterManifestNameEq, - filterManifestNameNotEq, - filterParticipatorySpaceIdIn, - filterParticipatorySpaceIdEq, - filterParticipatorySpaceTypeIn, - filterParticipatorySpaceTypeEq, - filterNameStart, - filterNameEq, - filterNameNotEq, - filterNameMatches, - page, - perPage, + .publicComponentsGet( + requestParameters.locales, + requestParameters.filterManifestNameNotIn, + requestParameters.filterManifestNameIn, + requestParameters.filterManifestNameEq, + requestParameters.filterManifestNameNotEq, + requestParameters.filterParticipatorySpaceIdIn, + requestParameters.filterParticipatorySpaceIdEq, + requestParameters.filterParticipatorySpaceTypeIn, + requestParameters.filterParticipatorySpaceTypeEq, + requestParameters.filterNameStart, + requestParameters.filterNameEq, + requestParameters.filterNameNotEq, + requestParameters.filterNameMatches, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(this.axios, this.basePath)); @@ -2117,85 +2625,55 @@ export class PublicApi extends BaseAPI { /** * * @summary Show a Component - * @param {number} id - * @param {Array} [locales] + * @param {PublicApiPublicComponentsIdGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PublicApi */ - public apiRestFullV00PublicComponentsIdGet( - id: number, - locales?: Array, + public publicComponentsIdGet( + requestParameters: PublicApiPublicComponentsIdGetRequest, options?: RawAxiosRequestConfig, ) { return PublicApiFp(this.configuration) - .apiRestFullV00PublicComponentsIdGet(id, locales, options) + .publicComponentsIdGet( + requestParameters.id, + requestParameters.locales, + options, + ) .then((request) => request(this.axios, this.basePath)); } /** * * @summary List Participatory Spaces - * @param {Array} [locales] - * @param {Array} [filterManifestNameNotIn] - * @param {Array} [filterManifestNameIn] - * @param {string} [filterManifestNameEq] - * @param {string} [filterManifestNameNotEq] - * @param {Array} [filterTitleNotIn] - * @param {Array} [filterTitleIn] - * @param {string} [filterTitleStart] - * @param {string} [filterTitleNotStart] - * @param {string} [filterTitleEq] - * @param {string} [filterTitleNotEq] - * @param {string} [filterTitleMatches] - * @param {string} [filterTitleDoesNotMatch] - * @param {ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum} [filterTitlePresent] - * @param {ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum} [filterTitleBlank] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {PublicApiPublicSpacesGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PublicApi */ - public apiRestFullV00PublicSpacesGet( - locales?: Array, - filterManifestNameNotIn?: Array, - filterManifestNameIn?: Array, - filterManifestNameEq?: string, - filterManifestNameNotEq?: string, - filterTitleNotIn?: Array, - filterTitleIn?: Array, - filterTitleStart?: string, - filterTitleNotStart?: string, - filterTitleEq?: string, - filterTitleNotEq?: string, - filterTitleMatches?: string, - filterTitleDoesNotMatch?: string, - filterTitlePresent?: ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum, - filterTitleBlank?: ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum, - page?: number, - perPage?: number, + public publicSpacesGet( + requestParameters: PublicApiPublicSpacesGetRequest = {}, options?: RawAxiosRequestConfig, ) { return PublicApiFp(this.configuration) - .apiRestFullV00PublicSpacesGet( - locales, - filterManifestNameNotIn, - filterManifestNameIn, - filterManifestNameEq, - filterManifestNameNotEq, - filterTitleNotIn, - filterTitleIn, - filterTitleStart, - filterTitleNotStart, - filterTitleEq, - filterTitleNotEq, - filterTitleMatches, - filterTitleDoesNotMatch, - filterTitlePresent, - filterTitleBlank, - page, - perPage, + .publicSpacesGet( + requestParameters.locales, + requestParameters.filterManifestNameNotIn, + requestParameters.filterManifestNameIn, + requestParameters.filterManifestNameEq, + requestParameters.filterManifestNameNotEq, + requestParameters.filterTitleNotIn, + requestParameters.filterTitleIn, + requestParameters.filterTitleStart, + requestParameters.filterTitleNotStart, + requestParameters.filterTitleEq, + requestParameters.filterTitleNotEq, + requestParameters.filterTitleMatches, + requestParameters.filterTitleDoesNotMatch, + requestParameters.filterTitlePresent, + requestParameters.filterTitleBlank, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(this.axios, this.basePath)); @@ -2205,16 +2683,62 @@ export class PublicApi extends BaseAPI { /** * @export */ -export const ApiRestFullV00PublicComponentsGetLocalesEnum = { +export const PublicComponentsGetLocalesEnum = { En: "en", + Bg: "bg", + Ar: "ar", + Ca: "ca", + Cs: "cs", + Da: "da", + De: "de", + El: "el", + Eo: "eo", + Es: "es", + EsMx: "es-MX", + EsPy: "es-PY", + Et: "et", + Eu: "eu", + Fa: "fa", + FiPl: "fi-pl", + Fi: "fi", Fr: "fr", + FrCa: "fr-CA", + Ga: "ga", + Gl: "gl", + Hr: "hr", + Hu: "hu", + Id: "id", + Is: "is", + It: "it", + Ja: "ja", + Ko: "ko", + Lb: "lb", + Lt: "lt", + Lv: "lv", + Mt: "mt", + Nl: "nl", + No: "no", + Pl: "pl", + Pt: "pt", + PtBr: "pt-BR", + Ro: "ro", + Ru: "ru", + Sk: "sk", + Sl: "sl", + Sr: "sr", + Sv: "sv", + Tr: "tr", + Uk: "uk", + Vi: "vi", + ZhCn: "zh-CN", + ZhTw: "zh-TW", } as const; -export type ApiRestFullV00PublicComponentsGetLocalesEnum = - (typeof ApiRestFullV00PublicComponentsGetLocalesEnum)[keyof typeof ApiRestFullV00PublicComponentsGetLocalesEnum]; +export type PublicComponentsGetLocalesEnum = + (typeof PublicComponentsGetLocalesEnum)[keyof typeof PublicComponentsGetLocalesEnum]; /** * @export */ -export const ApiRestFullV00PublicComponentsGetFilterManifestNameNotInEnum = { +export const PublicComponentsGetFilterManifestNameNotInEnum = { Pages: "pages", Proposals: "proposals", Meetings: "meetings", @@ -2225,12 +2749,12 @@ export const ApiRestFullV00PublicComponentsGetFilterManifestNameNotInEnum = { Sortitions: "sortitions", Blogs: "blogs", } as const; -export type ApiRestFullV00PublicComponentsGetFilterManifestNameNotInEnum = - (typeof ApiRestFullV00PublicComponentsGetFilterManifestNameNotInEnum)[keyof typeof ApiRestFullV00PublicComponentsGetFilterManifestNameNotInEnum]; +export type PublicComponentsGetFilterManifestNameNotInEnum = + (typeof PublicComponentsGetFilterManifestNameNotInEnum)[keyof typeof PublicComponentsGetFilterManifestNameNotInEnum]; /** * @export */ -export const ApiRestFullV00PublicComponentsGetFilterManifestNameInEnum = { +export const PublicComponentsGetFilterManifestNameInEnum = { Pages: "pages", Proposals: "proposals", Meetings: "meetings", @@ -2241,62 +2765,154 @@ export const ApiRestFullV00PublicComponentsGetFilterManifestNameInEnum = { Sortitions: "sortitions", Blogs: "blogs", } as const; -export type ApiRestFullV00PublicComponentsGetFilterManifestNameInEnum = - (typeof ApiRestFullV00PublicComponentsGetFilterManifestNameInEnum)[keyof typeof ApiRestFullV00PublicComponentsGetFilterManifestNameInEnum]; +export type PublicComponentsGetFilterManifestNameInEnum = + (typeof PublicComponentsGetFilterManifestNameInEnum)[keyof typeof PublicComponentsGetFilterManifestNameInEnum]; /** * @export */ -export const ApiRestFullV00PublicComponentsIdGetLocalesEnum = { +export const PublicComponentsIdGetLocalesEnum = { En: "en", + Bg: "bg", + Ar: "ar", + Ca: "ca", + Cs: "cs", + Da: "da", + De: "de", + El: "el", + Eo: "eo", + Es: "es", + EsMx: "es-MX", + EsPy: "es-PY", + Et: "et", + Eu: "eu", + Fa: "fa", + FiPl: "fi-pl", + Fi: "fi", Fr: "fr", + FrCa: "fr-CA", + Ga: "ga", + Gl: "gl", + Hr: "hr", + Hu: "hu", + Id: "id", + Is: "is", + It: "it", + Ja: "ja", + Ko: "ko", + Lb: "lb", + Lt: "lt", + Lv: "lv", + Mt: "mt", + Nl: "nl", + No: "no", + Pl: "pl", + Pt: "pt", + PtBr: "pt-BR", + Ro: "ro", + Ru: "ru", + Sk: "sk", + Sl: "sl", + Sr: "sr", + Sv: "sv", + Tr: "tr", + Uk: "uk", + Vi: "vi", + ZhCn: "zh-CN", + ZhTw: "zh-TW", } as const; -export type ApiRestFullV00PublicComponentsIdGetLocalesEnum = - (typeof ApiRestFullV00PublicComponentsIdGetLocalesEnum)[keyof typeof ApiRestFullV00PublicComponentsIdGetLocalesEnum]; +export type PublicComponentsIdGetLocalesEnum = + (typeof PublicComponentsIdGetLocalesEnum)[keyof typeof PublicComponentsIdGetLocalesEnum]; /** * @export */ -export const ApiRestFullV00PublicSpacesGetLocalesEnum = { +export const PublicSpacesGetLocalesEnum = { En: "en", + Bg: "bg", + Ar: "ar", + Ca: "ca", + Cs: "cs", + Da: "da", + De: "de", + El: "el", + Eo: "eo", + Es: "es", + EsMx: "es-MX", + EsPy: "es-PY", + Et: "et", + Eu: "eu", + Fa: "fa", + FiPl: "fi-pl", + Fi: "fi", Fr: "fr", + FrCa: "fr-CA", + Ga: "ga", + Gl: "gl", + Hr: "hr", + Hu: "hu", + Id: "id", + Is: "is", + It: "it", + Ja: "ja", + Ko: "ko", + Lb: "lb", + Lt: "lt", + Lv: "lv", + Mt: "mt", + Nl: "nl", + No: "no", + Pl: "pl", + Pt: "pt", + PtBr: "pt-BR", + Ro: "ro", + Ru: "ru", + Sk: "sk", + Sl: "sl", + Sr: "sr", + Sv: "sv", + Tr: "tr", + Uk: "uk", + Vi: "vi", + ZhCn: "zh-CN", + ZhTw: "zh-TW", } as const; -export type ApiRestFullV00PublicSpacesGetLocalesEnum = - (typeof ApiRestFullV00PublicSpacesGetLocalesEnum)[keyof typeof ApiRestFullV00PublicSpacesGetLocalesEnum]; +export type PublicSpacesGetLocalesEnum = + (typeof PublicSpacesGetLocalesEnum)[keyof typeof PublicSpacesGetLocalesEnum]; /** * @export */ -export const ApiRestFullV00PublicSpacesGetFilterManifestNameNotInEnum = { +export const PublicSpacesGetFilterManifestNameNotInEnum = { ParticipatoryProcesses: "participatory_processes", Assemblies: "assemblies", } as const; -export type ApiRestFullV00PublicSpacesGetFilterManifestNameNotInEnum = - (typeof ApiRestFullV00PublicSpacesGetFilterManifestNameNotInEnum)[keyof typeof ApiRestFullV00PublicSpacesGetFilterManifestNameNotInEnum]; +export type PublicSpacesGetFilterManifestNameNotInEnum = + (typeof PublicSpacesGetFilterManifestNameNotInEnum)[keyof typeof PublicSpacesGetFilterManifestNameNotInEnum]; /** * @export */ -export const ApiRestFullV00PublicSpacesGetFilterManifestNameInEnum = { +export const PublicSpacesGetFilterManifestNameInEnum = { ParticipatoryProcesses: "participatory_processes", Assemblies: "assemblies", } as const; -export type ApiRestFullV00PublicSpacesGetFilterManifestNameInEnum = - (typeof ApiRestFullV00PublicSpacesGetFilterManifestNameInEnum)[keyof typeof ApiRestFullV00PublicSpacesGetFilterManifestNameInEnum]; +export type PublicSpacesGetFilterManifestNameInEnum = + (typeof PublicSpacesGetFilterManifestNameInEnum)[keyof typeof PublicSpacesGetFilterManifestNameInEnum]; /** * @export */ -export const ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum = { +export const PublicSpacesGetFilterTitlePresentEnum = { _1: "1", _0: "0", } as const; -export type ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum = - (typeof ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum)[keyof typeof ApiRestFullV00PublicSpacesGetFilterTitlePresentEnum]; +export type PublicSpacesGetFilterTitlePresentEnum = + (typeof PublicSpacesGetFilterTitlePresentEnum)[keyof typeof PublicSpacesGetFilterTitlePresentEnum]; /** * @export */ -export const ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum = { +export const PublicSpacesGetFilterTitleBlankEnum = { _1: "1", _0: "0", } as const; -export type ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum = - (typeof ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum)[keyof typeof ApiRestFullV00PublicSpacesGetFilterTitleBlankEnum]; +export type PublicSpacesGetFilterTitleBlankEnum = + (typeof PublicSpacesGetFilterTitleBlankEnum)[keyof typeof PublicSpacesGetFilterTitleBlankEnum]; /** * SystemApi - axios parameter creator @@ -2309,21 +2925,19 @@ export const SystemApiAxiosParamCreator = function ( /** * * @summary List available organizations - * @param {Array} [populate] - * @param {Array} [locales] + * @param {Array} [locales] * @param {number} [page] Page number for pagination * @param {number} [perPage] Number of items per page * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00SystemOrganizationsGet: async ( - populate?: Array, - locales?: Array, + systemOrganizationsGet: async ( + locales?: Array, page?: number, perPage?: number, options: RawAxiosRequestConfig = {}, ): Promise => { - const localVarPath = `/api/rest_full/v0.0/system/organizations`; + const localVarPath = `/system/organizations`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -2343,10 +2957,6 @@ export const SystemApiAxiosParamCreator = function ( // http bearer authentication required await setBearerAuthToObject(localVarHeaderParameter, configuration); - if (populate) { - localVarQueryParameter["populate[]"] = populate; - } - if (locales) { localVarQueryParameter["locales[]"] = locales; } @@ -2386,13 +2996,13 @@ export const SystemApiAxiosParamCreator = function ( * @param {string} [filterNicknameNotEq] * @param {string} [filterNicknameMatches] * @param {string} [filterNicknameDoesNotMatch] - * @param {ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] - * @param {ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] + * @param {SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] + * @param {SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] * @param {string} [filterExtraCont] Search on user extended_data. use the format: `\"<key>\":<space>\"<value>\"` * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00SystemUsersGet: async ( + systemUsersGet: async ( page?: number, perPage?: number, filterNicknameNotIn?: Array, @@ -2403,12 +3013,12 @@ export const SystemApiAxiosParamCreator = function ( filterNicknameNotEq?: string, filterNicknameMatches?: string, filterNicknameDoesNotMatch?: string, - filterNicknamePresent?: ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum, - filterNicknameBlank?: ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum, + filterNicknamePresent?: SystemUsersGetFilterNicknamePresentEnum, + filterNicknameBlank?: SystemUsersGetFilterNicknameBlankEnum, filterExtraCont?: string, options: RawAxiosRequestConfig = {}, ): Promise => { - const localVarPath = `/api/rest_full/v0.0/system/users`; + const localVarPath = `/system/users`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -2512,16 +3122,14 @@ export const SystemApiFp = function (configuration?: Configuration) { /** * * @summary List available organizations - * @param {Array} [populate] - * @param {Array} [locales] + * @param {Array} [locales] * @param {number} [page] Page number for pagination * @param {number} [perPage] Number of items per page * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async apiRestFullV00SystemOrganizationsGet( - populate?: Array, - locales?: Array, + async systemOrganizationsGet( + locales?: Array, page?: number, perPage?: number, options?: RawAxiosRequestConfig, @@ -2532,8 +3140,7 @@ export const SystemApiFp = function (configuration?: Configuration) { ) => AxiosPromise > { const localVarAxiosArgs = - await localVarAxiosParamCreator.apiRestFullV00SystemOrganizationsGet( - populate, + await localVarAxiosParamCreator.systemOrganizationsGet( locales, page, perPage, @@ -2541,7 +3148,7 @@ export const SystemApiFp = function (configuration?: Configuration) { ); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = - operationServerMap["SystemApi.apiRestFullV00SystemOrganizationsGet"]?.[ + operationServerMap["SystemApi.systemOrganizationsGet"]?.[ localVarOperationServerIndex ]?.url; return (axios, basePath) => @@ -2565,13 +3172,13 @@ export const SystemApiFp = function (configuration?: Configuration) { * @param {string} [filterNicknameNotEq] * @param {string} [filterNicknameMatches] * @param {string} [filterNicknameDoesNotMatch] - * @param {ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] - * @param {ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] + * @param {SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] + * @param {SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] * @param {string} [filterExtraCont] Search on user extended_data. use the format: `\"<key>\":<space>\"<value>\"` * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async apiRestFullV00SystemUsersGet( + async systemUsersGet( page?: number, perPage?: number, filterNicknameNotIn?: Array, @@ -2582,33 +3189,32 @@ export const SystemApiFp = function (configuration?: Configuration) { filterNicknameNotEq?: string, filterNicknameMatches?: string, filterNicknameDoesNotMatch?: string, - filterNicknamePresent?: ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum, - filterNicknameBlank?: ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum, + filterNicknamePresent?: SystemUsersGetFilterNicknamePresentEnum, + filterNicknameBlank?: SystemUsersGetFilterNicknameBlankEnum, filterExtraCont?: string, options?: RawAxiosRequestConfig, ): Promise< (axios?: AxiosInstance, basePath?: string) => AxiosPromise > { - const localVarAxiosArgs = - await localVarAxiosParamCreator.apiRestFullV00SystemUsersGet( - page, - perPage, - filterNicknameNotIn, - filterNicknameIn, - filterNicknameStart, - filterNicknameNotStart, - filterNicknameEq, - filterNicknameNotEq, - filterNicknameMatches, - filterNicknameDoesNotMatch, - filterNicknamePresent, - filterNicknameBlank, - filterExtraCont, - options, - ); + const localVarAxiosArgs = await localVarAxiosParamCreator.systemUsersGet( + page, + perPage, + filterNicknameNotIn, + filterNicknameIn, + filterNicknameStart, + filterNicknameNotStart, + filterNicknameEq, + filterNicknameNotEq, + filterNicknameMatches, + filterNicknameDoesNotMatch, + filterNicknamePresent, + filterNicknameBlank, + filterExtraCont, + options, + ); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = - operationServerMap["SystemApi.apiRestFullV00SystemUsersGet"]?.[ + operationServerMap["SystemApi.systemUsersGet"]?.[ localVarOperationServerIndex ]?.url; return (axios, basePath) => @@ -2636,26 +3242,19 @@ export const SystemApiFactory = function ( /** * * @summary List available organizations - * @param {Array} [populate] - * @param {Array} [locales] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {SystemApiSystemOrganizationsGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00SystemOrganizationsGet( - populate?: Array, - locales?: Array, - page?: number, - perPage?: number, + systemOrganizationsGet( + requestParameters: SystemApiSystemOrganizationsGetRequest = {}, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .apiRestFullV00SystemOrganizationsGet( - populate, - locales, - page, - perPage, + .systemOrganizationsGet( + requestParameters.locales, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(axios, basePath)); @@ -2663,53 +3262,29 @@ export const SystemApiFactory = function ( /** * * @summary List available Users - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page - * @param {Array} [filterNicknameNotIn] - * @param {Array} [filterNicknameIn] - * @param {string} [filterNicknameStart] - * @param {string} [filterNicknameNotStart] - * @param {string} [filterNicknameEq] - * @param {string} [filterNicknameNotEq] - * @param {string} [filterNicknameMatches] - * @param {string} [filterNicknameDoesNotMatch] - * @param {ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] - * @param {ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] - * @param {string} [filterExtraCont] Search on user extended_data. use the format: `\"<key>\":<space>\"<value>\"` + * @param {SystemApiSystemUsersGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - apiRestFullV00SystemUsersGet( - page?: number, - perPage?: number, - filterNicknameNotIn?: Array, - filterNicknameIn?: Array, - filterNicknameStart?: string, - filterNicknameNotStart?: string, - filterNicknameEq?: string, - filterNicknameNotEq?: string, - filterNicknameMatches?: string, - filterNicknameDoesNotMatch?: string, - filterNicknamePresent?: ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum, - filterNicknameBlank?: ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum, - filterExtraCont?: string, + systemUsersGet( + requestParameters: SystemApiSystemUsersGetRequest = {}, options?: RawAxiosRequestConfig, ): AxiosPromise { return localVarFp - .apiRestFullV00SystemUsersGet( - page, - perPage, - filterNicknameNotIn, - filterNicknameIn, - filterNicknameStart, - filterNicknameNotStart, - filterNicknameEq, - filterNicknameNotEq, - filterNicknameMatches, - filterNicknameDoesNotMatch, - filterNicknamePresent, - filterNicknameBlank, - filterExtraCont, + .systemUsersGet( + requestParameters.page, + requestParameters.perPage, + requestParameters.filterNicknameNotIn, + requestParameters.filterNicknameIn, + requestParameters.filterNicknameStart, + requestParameters.filterNicknameNotStart, + requestParameters.filterNicknameEq, + requestParameters.filterNicknameNotEq, + requestParameters.filterNicknameMatches, + requestParameters.filterNicknameDoesNotMatch, + requestParameters.filterNicknamePresent, + requestParameters.filterNicknameBlank, + requestParameters.filterExtraCont, options, ) .then((request) => request(axios, basePath)); @@ -2717,6 +3292,132 @@ export const SystemApiFactory = function ( }; }; +/** + * Request parameters for systemOrganizationsGet operation in SystemApi. + * @export + * @interface SystemApiSystemOrganizationsGetRequest + */ +export interface SystemApiSystemOrganizationsGetRequest { + /** + * + * @type {Array<'en' | 'bg' | 'ar' | 'ca' | 'cs' | 'da' | 'de' | 'el' | 'eo' | 'es' | 'es-MX' | 'es-PY' | 'et' | 'eu' | 'fa' | 'fi-pl' | 'fi' | 'fr' | 'fr-CA' | 'ga' | 'gl' | 'hr' | 'hu' | 'id' | 'is' | 'it' | 'ja' | 'ko' | 'lb' | 'lt' | 'lv' | 'mt' | 'nl' | 'no' | 'pl' | 'pt' | 'pt-BR' | 'ro' | 'ru' | 'sk' | 'sl' | 'sr' | 'sv' | 'tr' | 'uk' | 'vi' | 'zh-CN' | 'zh-TW'>} + * @memberof SystemApiSystemOrganizationsGet + */ + readonly locales?: Array; + + /** + * Page number for pagination + * @type {number} + * @memberof SystemApiSystemOrganizationsGet + */ + readonly page?: number; + + /** + * Number of items per page + * @type {number} + * @memberof SystemApiSystemOrganizationsGet + */ + readonly perPage?: number; +} + +/** + * Request parameters for systemUsersGet operation in SystemApi. + * @export + * @interface SystemApiSystemUsersGetRequest + */ +export interface SystemApiSystemUsersGetRequest { + /** + * Page number for pagination + * @type {number} + * @memberof SystemApiSystemUsersGet + */ + readonly page?: number; + + /** + * Number of items per page + * @type {number} + * @memberof SystemApiSystemUsersGet + */ + readonly perPage?: number; + + /** + * + * @type {Array} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameNotIn?: Array; + + /** + * + * @type {Array} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameIn?: Array; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameStart?: string; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameNotStart?: string; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameEq?: string; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameNotEq?: string; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameMatches?: string; + + /** + * + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameDoesNotMatch?: string; + + /** + * + * @type {'1' | '0'} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknamePresent?: SystemUsersGetFilterNicknamePresentEnum; + + /** + * + * @type {'1' | '0'} + * @memberof SystemApiSystemUsersGet + */ + readonly filterNicknameBlank?: SystemUsersGetFilterNicknameBlankEnum; + + /** + * Search on user extended_data. use the format: `\"<key>\":<space>\"<value>\"` + * @type {string} + * @memberof SystemApiSystemUsersGet + */ + readonly filterExtraCont?: string; +} + /** * SystemApi - object-oriented interface * @export @@ -2727,27 +3428,20 @@ export class SystemApi extends BaseAPI { /** * * @summary List available organizations - * @param {Array} [populate] - * @param {Array} [locales] - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page + * @param {SystemApiSystemOrganizationsGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApi */ - public apiRestFullV00SystemOrganizationsGet( - populate?: Array, - locales?: Array, - page?: number, - perPage?: number, + public systemOrganizationsGet( + requestParameters: SystemApiSystemOrganizationsGetRequest = {}, options?: RawAxiosRequestConfig, ) { return SystemApiFp(this.configuration) - .apiRestFullV00SystemOrganizationsGet( - populate, - locales, - page, - perPage, + .systemOrganizationsGet( + requestParameters.locales, + requestParameters.page, + requestParameters.perPage, options, ) .then((request) => request(this.axios, this.basePath)); @@ -2756,54 +3450,30 @@ export class SystemApi extends BaseAPI { /** * * @summary List available Users - * @param {number} [page] Page number for pagination - * @param {number} [perPage] Number of items per page - * @param {Array} [filterNicknameNotIn] - * @param {Array} [filterNicknameIn] - * @param {string} [filterNicknameStart] - * @param {string} [filterNicknameNotStart] - * @param {string} [filterNicknameEq] - * @param {string} [filterNicknameNotEq] - * @param {string} [filterNicknameMatches] - * @param {string} [filterNicknameDoesNotMatch] - * @param {ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum} [filterNicknamePresent] - * @param {ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum} [filterNicknameBlank] - * @param {string} [filterExtraCont] Search on user extended_data. use the format: `\"<key>\":<space>\"<value>\"` + * @param {SystemApiSystemUsersGetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SystemApi */ - public apiRestFullV00SystemUsersGet( - page?: number, - perPage?: number, - filterNicknameNotIn?: Array, - filterNicknameIn?: Array, - filterNicknameStart?: string, - filterNicknameNotStart?: string, - filterNicknameEq?: string, - filterNicknameNotEq?: string, - filterNicknameMatches?: string, - filterNicknameDoesNotMatch?: string, - filterNicknamePresent?: ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum, - filterNicknameBlank?: ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum, - filterExtraCont?: string, + public systemUsersGet( + requestParameters: SystemApiSystemUsersGetRequest = {}, options?: RawAxiosRequestConfig, ) { return SystemApiFp(this.configuration) - .apiRestFullV00SystemUsersGet( - page, - perPage, - filterNicknameNotIn, - filterNicknameIn, - filterNicknameStart, - filterNicknameNotStart, - filterNicknameEq, - filterNicknameNotEq, - filterNicknameMatches, - filterNicknameDoesNotMatch, - filterNicknamePresent, - filterNicknameBlank, - filterExtraCont, + .systemUsersGet( + requestParameters.page, + requestParameters.perPage, + requestParameters.filterNicknameNotIn, + requestParameters.filterNicknameIn, + requestParameters.filterNicknameStart, + requestParameters.filterNicknameNotStart, + requestParameters.filterNicknameEq, + requestParameters.filterNicknameNotEq, + requestParameters.filterNicknameMatches, + requestParameters.filterNicknameDoesNotMatch, + requestParameters.filterNicknamePresent, + requestParameters.filterNicknameBlank, + requestParameters.filterExtraCont, options, ) .then((request) => request(this.axios, this.basePath)); @@ -2813,39 +3483,73 @@ export class SystemApi extends BaseAPI { /** * @export */ -export const ApiRestFullV00SystemOrganizationsGetPopulateEnum = { - Host: "host", - SecondaryHosts: "secondary_hosts", - Name: "name", - CreatedAt: "created_at", - UpdatedAt: "updated_at", -} as const; -export type ApiRestFullV00SystemOrganizationsGetPopulateEnum = - (typeof ApiRestFullV00SystemOrganizationsGetPopulateEnum)[keyof typeof ApiRestFullV00SystemOrganizationsGetPopulateEnum]; -/** - * @export - */ -export const ApiRestFullV00SystemOrganizationsGetLocalesEnum = { +export const SystemOrganizationsGetLocalesEnum = { En: "en", + Bg: "bg", + Ar: "ar", + Ca: "ca", + Cs: "cs", + Da: "da", + De: "de", + El: "el", + Eo: "eo", + Es: "es", + EsMx: "es-MX", + EsPy: "es-PY", + Et: "et", + Eu: "eu", + Fa: "fa", + FiPl: "fi-pl", + Fi: "fi", Fr: "fr", + FrCa: "fr-CA", + Ga: "ga", + Gl: "gl", + Hr: "hr", + Hu: "hu", + Id: "id", + Is: "is", + It: "it", + Ja: "ja", + Ko: "ko", + Lb: "lb", + Lt: "lt", + Lv: "lv", + Mt: "mt", + Nl: "nl", + No: "no", + Pl: "pl", + Pt: "pt", + PtBr: "pt-BR", + Ro: "ro", + Ru: "ru", + Sk: "sk", + Sl: "sl", + Sr: "sr", + Sv: "sv", + Tr: "tr", + Uk: "uk", + Vi: "vi", + ZhCn: "zh-CN", + ZhTw: "zh-TW", } as const; -export type ApiRestFullV00SystemOrganizationsGetLocalesEnum = - (typeof ApiRestFullV00SystemOrganizationsGetLocalesEnum)[keyof typeof ApiRestFullV00SystemOrganizationsGetLocalesEnum]; +export type SystemOrganizationsGetLocalesEnum = + (typeof SystemOrganizationsGetLocalesEnum)[keyof typeof SystemOrganizationsGetLocalesEnum]; /** * @export */ -export const ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum = { +export const SystemUsersGetFilterNicknamePresentEnum = { _1: "1", _0: "0", } as const; -export type ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum = - (typeof ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum)[keyof typeof ApiRestFullV00SystemUsersGetFilterNicknamePresentEnum]; +export type SystemUsersGetFilterNicknamePresentEnum = + (typeof SystemUsersGetFilterNicknamePresentEnum)[keyof typeof SystemUsersGetFilterNicknamePresentEnum]; /** * @export */ -export const ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum = { +export const SystemUsersGetFilterNicknameBlankEnum = { _1: "1", _0: "0", } as const; -export type ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum = - (typeof ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum)[keyof typeof ApiRestFullV00SystemUsersGetFilterNicknameBlankEnum]; +export type SystemUsersGetFilterNicknameBlankEnum = + (typeof SystemUsersGetFilterNicknameBlankEnum)[keyof typeof SystemUsersGetFilterNicknameBlankEnum]; diff --git a/contrib/decidim-node-client/base.ts b/contrib/decidim-node-client/base.ts index 34d8816..e19d8e2 100644 --- a/contrib/decidim-node-client/base.ts +++ b/contrib/decidim-node-client/base.ts @@ -18,7 +18,10 @@ import type { Configuration } from "./configuration"; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from "axios"; import globalAxios from "axios"; -export const BASE_PATH = "https://www.example.com".replace(/\/+$/, ""); +export const BASE_PATH = "https://www.example.com/api/rest_full/v0.0".replace( + /\/+$/, + "", +); /** * diff --git a/contrib/decidim-node-client/package.json b/contrib/decidim-node-client/package.json index 69e0581..8a1725d 100644 --- a/contrib/decidim-node-client/package.json +++ b/contrib/decidim-node-client/package.json @@ -1,6 +1,6 @@ { "name": "@octree/decidim-sdk", - "version": "0.0.2", + "version": "0.0.3", "description": "Typescript-fetch client for Decidim Restfull APi", "keywords": [], "license": "AGPL-3.0-only", @@ -24,7 +24,7 @@ "dist" ], "scripts": { - "build": "pack-up build", + "build": "rm -rf dist && pack-up build", "check": "pack-up check", "lint": "eslint .", "lint:fix": "eslint . --fix", diff --git a/contrib/decidim-node-client/packup.config.ts b/contrib/decidim-node-client/packup.config.ts index 5b79590..caaf00a 100644 --- a/contrib/decidim-node-client/packup.config.ts +++ b/contrib/decidim-node-client/packup.config.ts @@ -3,4 +3,5 @@ import { defineConfig } from "@strapi/pack-up"; export default defineConfig({ runtime: "node", preserveModules: true, + tsconfig: "./tsconfig.json", }); diff --git a/contrib/decidim-node-client/tsconfig.json b/contrib/decidim-node-client/tsconfig.json index 478c6eb..c4b6226 100644 --- a/contrib/decidim-node-client/tsconfig.json +++ b/contrib/decidim-node-client/tsconfig.json @@ -1,5 +1,5 @@ { - "include": ["*.ts"], + "include": ["./index.ts", "**/*.ts"], "exclude": ["**/*.test.ts"], "compilerOptions": { "composite": false, @@ -11,11 +11,15 @@ "isolatedModules": true, "moduleResolution": "Bundler", "module": "ESNext", - "noEmit": true, "noUnusedLocals": false, "noUnusedParameters": false, "preserveWatchOutput": true, "skipLibCheck": true, - "strict": true + "strict": false, + "rootDir": ".", + "outDir": "./dist", + "emitDeclarationOnly": true, + "noEmit": false, + "resolveJsonModule": true } } diff --git a/lib/decidim/rest_full/version.rb b/lib/decidim/rest_full/version.rb index 6b45c9d..27a1963 100644 --- a/lib/decidim/rest_full/version.rb +++ b/lib/decidim/rest_full/version.rb @@ -3,7 +3,7 @@ module Decidim module RestFull def self.version - "0.0.2" # DO NOT UPDATE MANUALLY + "0.0.3" # DO NOT UPDATE MANUALLY end def self.major_minor_version diff --git a/package.json b/package.json index 0617281..8a07d8f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "decidim-rest_full", "private": true, - "version": "0.0.2", + "version": "0.0.3", "packageManager": "yarn@1.22.22", "devDependencies": { "@openapitools/openapi-generator-cli": "^2.15.3", diff --git a/spec/decidim/rest_full/public/components_index_spec.rb b/spec/decidim/rest_full/public/components_index_spec.rb index 770e38d..34eacd3 100644 --- a/spec/decidim/rest_full/public/components_index_spec.rb +++ b/spec/decidim/rest_full/public/components_index_spec.rb @@ -2,7 +2,7 @@ require "swagger_helper" RSpec.describe "Decidim::Api::RestFull::Public::ComponentsController", type: :request do - path "/api/rest_full/v#{Decidim::RestFull.major_minor_version}/public/components" do + path "/public/components" do get "List Components" do tags "Public" produces "application/json" diff --git a/spec/decidim/rest_full/public/components_show_spec.rb b/spec/decidim/rest_full/public/components_show_spec.rb index 9cc6e98..c1352f5 100644 --- a/spec/decidim/rest_full/public/components_show_spec.rb +++ b/spec/decidim/rest_full/public/components_show_spec.rb @@ -2,7 +2,7 @@ require "swagger_helper" RSpec.describe "Decidim::Api::RestFull::Public::ComponentsController", type: :request do - path "/api/rest_full/v#{Decidim::RestFull.major_minor_version}/public/components/{id}" do + path "/public/components/{id}" do get "Show a Component" do tags "Public" produces "application/json" diff --git a/spec/decidim/rest_full/public/spaces_index_spec.rb b/spec/decidim/rest_full/public/spaces_index_spec.rb index 59202ed..16f7609 100644 --- a/spec/decidim/rest_full/public/spaces_index_spec.rb +++ b/spec/decidim/rest_full/public/spaces_index_spec.rb @@ -2,7 +2,7 @@ require "swagger_helper" RSpec.describe "Decidim::Api::RestFull::Public::SpacesController", type: :request do - path "/api/rest_full/v#{Decidim::RestFull.major_minor_version}/public/spaces" do + path "/public/spaces" do get "List Participatory Spaces" do tags "Public" produces "application/json" diff --git a/spec/decidim/rest_full/system/organization_index_spec.rb b/spec/decidim/rest_full/system/organization_index_spec.rb index 72418e2..95f445a 100644 --- a/spec/decidim/rest_full/system/organization_index_spec.rb +++ b/spec/decidim/rest_full/system/organization_index_spec.rb @@ -2,7 +2,7 @@ require "swagger_helper" RSpec.describe "Decidim::Api::RestFull::System::OrganizationsController", type: :request do - path "/api/rest_full/v#{Decidim::RestFull.major_minor_version}/system/organizations" do + path "/system/organizations" do get "List available organizations" do tags "System" produces "application/json" diff --git a/spec/decidim/rest_full/system/users_index_spec.rb b/spec/decidim/rest_full/system/users_index_spec.rb index 8e6d9ca..97b32a6 100644 --- a/spec/decidim/rest_full/system/users_index_spec.rb +++ b/spec/decidim/rest_full/system/users_index_spec.rb @@ -2,7 +2,7 @@ require "swagger_helper" RSpec.describe "Decidim::Api::RestFull::OAuth::UsersController", type: :request do - path "/api/rest_full/v#{Decidim::RestFull.major_minor_version}/system/users" do + path "/system/users" do get "List available Users" do tags "System" produces "application/json" diff --git a/spec/swagger_helper.rb b/spec/swagger_helper.rb index 0903ee7..398b25c 100644 --- a/spec/swagger_helper.rb +++ b/spec/swagger_helper.rb @@ -57,7 +57,7 @@ ], servers: [ { - url: "https://{defaultHost}", + url: "https://{defaultHost}/api/rest_full/v#{Decidim::RestFull.major_minor_version}", variables: { defaultHost: { default: "www.example.com" diff --git a/website/package.json b/website/package.json index f96049a..03ee9b8 100644 --- a/website/package.json +++ b/website/package.json @@ -1,6 +1,6 @@ { "name": "website", - "version": "0.0.2", + "version": "0.0.3", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/website/static/api-docs.html b/website/static/api-docs.html index 1435f4d..57cea76 100644 --- a/website/static/api-docs.html +++ b/website/static/api-docs.html @@ -392,7 +392,7 @@ -
Multi-tenant " class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv">

Token returned

Request samples

Content type
application/json
Example
{
  • "grant_type": "client_credentials",
  • "client_id": "string",
  • "client_secret": "string",
  • "scope": "public"
}

Response samples

Content type
application/json
Example
{
  • "access_token": "cUK3mCnz7nKooVAlc0YN75thhmIw8rlUwCboY5ouKiA",
  • "token_type": "Bearer",
  • "expires_in": 7200,
  • "scope": "public",
  • "created_at": 1732318697
}

Public

List Components

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
query Parameters
locales[]
Array of strings
Items Enum: "en" "fr"
filter[manifest_name_not_in][]
Array of strings
Items Enum: "pages" "proposals" "meetings" "budgets" "surveys" "accountability" "debates" "sortitions" "blogs"

Request samples

Content type
application/json
Example
{
  • "grant_type": "client_credentials",
  • "client_id": "string",
  • "client_secret": "string",
  • "scope": "public"
}

Response samples

Content type
application/json
Example
{
  • "access_token": "pd4OmWxyA6VSYsbtrOUU9F793AH0G-p1MWvo0ayItu8",
  • "token_type": "Bearer",
  • "expires_in": 7200,
  • "scope": "public",
  • "created_at": 1733004261
}

Public

List Components

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
query Parameters
locales[]
Array of strings
Items Enum: "en" "bg" "ar" "ca" "cs" "da" "de" "el" "eo" "es" "es-MX" "es-PY" "et" "eu" "fa" "fi-pl" "fi" "fr" "fr-CA" "ga" "gl" "hr" "hu" "id" "is" "it" "ja" "ko" "lb" "lt" "lv" "mt" "nl" "no" "pl" "pt" "pt-BR" "ro" "ru" "sk" "sl" "sr" "sv" "tr" "uk" "vi" "zh-CN" "zh-TW"
filter[manifest_name_not_in][]
Array of strings
Items Enum: "pages" "proposals" "meetings" "budgets" "surveys" "accountability" "debates" "sortitions" "blogs"

match none of manifest_name's values in array

filter[manifest_name_in][]
Array of strings
Items Enum: "pages" "proposals" "meetings" "budgets" "surveys" "accountability" "debates" "sortitions" "blogs"

match one of manifest_name's values in array

@@ -508,7 +508,7 @@

Multi-tenant

" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv">

Bad Request

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

Show a Component

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
path Parameters
id
required
integer
query Parameters
locales[]
Array of strings
Items Enum: "en" "fr"

Responses

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

Show a Component

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
path Parameters
id
required
integer
query Parameters
locales[]
Array of strings
Items Enum: "en" "bg" "ar" "ca" "cs" "da" "de" "el" "eo" "es" "es-MX" "es-PY" "et" "eu" "fa" "fi-pl" "fi" "fr" "fr-CA" "ga" "gl" "hr" "hu" "id" "is" "it" "ja" "ko" "lb" "lt" "lv" "mt" "nl" "no" "pl" "pt" "pt-BR" "ro" "ru" "sk" "sl" "sr" "sv" "tr" "uk" "vi" "zh-CN" "zh-TW"

Responses

Response samples

Content type
application/json
Example
{
  • "data": {
    }
}

List Participatory Spaces

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
query Parameters
locales[]
Array of strings
Items Enum: "en" "fr"
filter[manifest_name_not_in][]
Array of strings
Items Enum: "participatory_processes" "assemblies"

Response samples

Content type
application/json
Example
{
  • "data": {
    }
}

List Participatory Spaces

Authorizations:
credentialFlowBearerresourceOwnerFlowBearer
query Parameters
locales[]
Array of strings
Items Enum: "en" "bg" "ar" "ca" "cs" "da" "de" "el" "eo" "es" "es-MX" "es-PY" "et" "eu" "fa" "fi-pl" "fi" "fr" "fr-CA" "ga" "gl" "hr" "hu" "id" "is" "it" "ja" "ko" "lb" "lt" "lv" "mt" "nl" "no" "pl" "pt" "pt-BR" "ro" "ru" "sk" "sl" "sr" "sv" "tr" "uk" "vi" "zh-CN" "zh-TW"
filter[manifest_name_not_in][]
Array of strings
Items Enum: "participatory_processes" "assemblies"

match none of manifest_name's values in array

filter[manifest_name_in][]
Array of strings
Items Enum: "participatory_processes" "assemblies"

match one of manifest_name's values in array

@@ -554,7 +554,7 @@

Multi-tenant

" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv">

Bad Request

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

System

List available organizations

Authorizations:
credentialFlowBearer
query Parameters
populate[]
Array of strings
Items Enum: "host" "secondary_hosts" "name" "created_at" "updated_at"
locales[]
Array of strings
Items Enum: "en" "fr"
page
integer

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

System

List available organizations

Authorizations:
credentialFlowBearer
query Parameters
locales[]
Array of strings
Items Enum: "en" "bg" "ar" "ca" "cs" "da" "de" "el" "eo" "es" "es-MX" "es-PY" "et" "eu" "fa" "fi-pl" "fi" "fr" "fr-CA" "ga" "gl" "hr" "hu" "id" "is" "it" "ja" "ko" "lb" "lt" "lv" "mt" "nl" "no" "pl" "pt" "pt-BR" "ro" "ru" "sk" "sl" "sr" "sv" "tr" "uk" "vi" "zh-CN" "zh-TW"
page
integer

Page number for pagination

per_page
integer

Number of items per page

@@ -564,7 +564,7 @@

Multi-tenant

" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv">

Bad Request

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

List available Users

Authorizations:
credentialFlowBearer
query Parameters
page
integer

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}

List available Users

Authorizations:
credentialFlowBearer
query Parameters
page
integer

Page number for pagination

per_page
integer

Number of items per page

@@ -594,9 +594,9 @@

Multi-tenant

" class="sc-epnzzT sc-eMwmJz drsioI dWZUhK sc-drVZOg jtjIAv">

Users listed

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}
+

Response samples

Content type
application/json
Example
{
  • "data": [
    ]
}
Omnis omnis ad. 205", - "fr": "" + "en": " Non earum perspiciatis. 4897", + "fr": " Aperiam suscipit soluta. 4914" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:54Z", - "updated_at": "2024-11-22T23:38:54Z" + "created_at": "2024-12-01T23:24:10Z", + "updated_at": "2024-12-01T23:24:10Z" }, "relationships": { "resources": { @@ -1455,8 +1731,8 @@ } }, "links": { - "self": "https://16.lvh.me/api/rest_full/v0.0/components/10909", - "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/2631/meetings/10909" + "self": "https://16.lvh.me/api/rest_full/v0.0/components/13837", + "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/3349/meetings/13837" }, "meta": { "published": true, @@ -1469,32 +1745,32 @@ } }, { - "id": "10910", + "id": "13838", "type": "proposal_component", "attributes": { "manifest_name": "proposals", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2631", + "participatory_space_id": "3349", "name": { - "en": " Quia ut doloribus. 291", - "fr": "" + "en": " Aperiam ut debitis. 6961", + "fr": " Incidunt consequuntur sint. 6978" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:54Z", - "updated_at": "2024-11-22T23:38:54Z" + "created_at": "2024-12-01T23:24:10Z", + "updated_at": "2024-12-01T23:24:11Z" }, "relationships": { "resources": { "data": [ { - "id": "4226", + "id": "5373", "type": "proposal" }, { - "id": "4225", + "id": "5374", "type": "proposal" } ], @@ -1504,8 +1780,8 @@ } }, "links": { - "self": "https://16.lvh.me/api/rest_full/v0.0/components/10910", - "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/2631/proposals/10910" + "self": "https://16.lvh.me/api/rest_full/v0.0/components/13838", + "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/3349/proposals/13838" }, "meta": { "published": true, @@ -1513,12 +1789,12 @@ } }, { - "id": "10911", + "id": "13839", "type": "accountability_component", "attributes": { "manifest_name": "accountability", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2631", + "participatory_space_id": "3349", "name": { "en": " Accountability", "fr": " Suivi" @@ -1527,18 +1803,18 @@ "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:54Z", - "updated_at": "2024-11-22T23:38:54Z" + "created_at": "2024-12-01T23:24:11Z", + "updated_at": "2024-12-01T23:24:11Z" }, "relationships": { "resources": { "data": [ { - "id": "1022", + "id": "1522", "type": "result" }, { - "id": "1021", + "id": "1521", "type": "result" } ], @@ -1548,8 +1824,8 @@ } }, "links": { - "self": "https://16.lvh.me/api/rest_full/v0.0/components/10911", - "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/2631/accountability/10911" + "self": "https://16.lvh.me/api/rest_full/v0.0/components/13839", + "related": "https://16.lvh.me/api/rest_full/v0.0/participatory_processes/3349/accountability/13839" }, "meta": { "published": true, @@ -1563,22 +1839,22 @@ "value": { "data": [ { - "id": "10912", + "id": "13840", "type": "meeting_component", "attributes": { "manifest_name": "meetings", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2632", + "participatory_space_id": "3350", "name": { - "en": " Est ut occaecati. 387", - "fr": "" + "en": " Vel repudiandae ea. 9265", + "fr": " Culpa temporibus veritatis. 9282" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:54Z", - "updated_at": "2024-11-22T23:38:54Z" + "created_at": "2024-12-01T23:24:11Z", + "updated_at": "2024-12-01T23:24:11Z" }, "relationships": { "resources": { @@ -1591,8 +1867,8 @@ } }, "links": { - "self": "https://19.lvh.me/api/rest_full/v0.0/components/10912", - "related": "https://19.lvh.me/api/rest_full/v0.0/participatory_processes/2632/meetings/10912" + "self": "https://19.lvh.me/api/rest_full/v0.0/components/13840", + "related": "https://19.lvh.me/api/rest_full/v0.0/participatory_processes/3350/meetings/13840" }, "meta": { "published": true, @@ -1611,22 +1887,22 @@ "value": { "data": [ { - "id": "10915", + "id": "13843", "type": "meeting_component", "attributes": { "manifest_name": "meetings", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2633", + "participatory_space_id": "3351", "name": { - "en": " Error nostrum nisi. 569", - "fr": "" + "en": " Aliquid ex esse. 13633", + "fr": " In totam dicta. 13650" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:55Z", - "updated_at": "2024-11-22T23:38:55Z" + "created_at": "2024-12-01T23:24:12Z", + "updated_at": "2024-12-01T23:24:12Z" }, "relationships": { "resources": { @@ -1639,8 +1915,8 @@ } }, "links": { - "self": "https://22.lvh.me/api/rest_full/v0.0/components/10915", - "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/2633/meetings/10915" + "self": "https://22.lvh.me/api/rest_full/v0.0/components/13843", + "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/3351/meetings/13843" }, "meta": { "published": true, @@ -1653,32 +1929,32 @@ } }, { - "id": "10916", + "id": "13844", "type": "proposal_component", "attributes": { "manifest_name": "proposals", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2633", + "participatory_space_id": "3351", "name": { - "en": " Eveniet quos quo. 655", - "fr": "" + "en": " Dolor nam beatae. 15697", + "fr": " Voluptas dignissimos praesentium. 15714" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:55Z", - "updated_at": "2024-11-22T23:38:55Z" + "created_at": "2024-12-01T23:24:12Z", + "updated_at": "2024-12-01T23:24:12Z" }, "relationships": { "resources": { "data": [ { - "id": "4229", + "id": "5377", "type": "proposal" }, { - "id": "4230", + "id": "5378", "type": "proposal" } ], @@ -1688,8 +1964,8 @@ } }, "links": { - "self": "https://22.lvh.me/api/rest_full/v0.0/components/10916", - "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/2633/proposals/10916" + "self": "https://22.lvh.me/api/rest_full/v0.0/components/13844", + "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/3351/proposals/13844" }, "meta": { "published": true, @@ -1697,12 +1973,12 @@ } }, { - "id": "10917", + "id": "13845", "type": "accountability_component", "attributes": { "manifest_name": "accountability", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2633", + "participatory_space_id": "3351", "name": { "en": " Accountability", "fr": " Suivi" @@ -1711,18 +1987,18 @@ "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:55Z", - "updated_at": "2024-11-22T23:38:55Z" + "created_at": "2024-12-01T23:24:12Z", + "updated_at": "2024-12-01T23:24:12Z" }, "relationships": { "resources": { "data": [ { - "id": "1025", + "id": "1526", "type": "result" }, { - "id": "1026", + "id": "1525", "type": "result" } ], @@ -1732,8 +2008,8 @@ } }, "links": { - "self": "https://22.lvh.me/api/rest_full/v0.0/components/10917", - "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/2633/accountability/10917" + "self": "https://22.lvh.me/api/rest_full/v0.0/components/13845", + "related": "https://22.lvh.me/api/rest_full/v0.0/participatory_processes/3351/accountability/13845" }, "meta": { "published": true, @@ -1747,22 +2023,114 @@ "value": { "data": [ { - "id": "10918", + "id": "13846", "type": "meeting_component", "attributes": { "manifest_name": "meetings", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2634", + "participatory_space_id": "3352", "name": { - "en": " Odit harum non. 751", - "fr": "" + "en": " Minus qui dolores. 18001", + "bg": " Omnis quia magni. 18002", + "ar": " Suscipit provident debitis. 18003", + "ca": " Debitis nihil necessitatibus. 18004", + "cs": " Quas nesciunt aperiam. 18005", + "da": " Explicabo vel et. 18006", + "de": " Aliquam excepturi facilis. 18007", + "el": " Ab eum saepe. 18008", + "eo": " Dicta sequi facilis. 18009", + "es": " Veritatis excepturi commodi. 18010", + "es-MX": " Reprehenderit sit consequatur. 18011", + "es-PY": " Reiciendis est a. 18012", + "et": " Ut fuga aut. 18013", + "eu": " Nihil aut quod. 18014", + "fa": " Et et delectus. 18015", + "fi-pl": " Enim totam non. 18016", + "fi": " Officia eligendi natus. 18017", + "fr": " Ullam ut omnis. 18018", + "fr-CA": " Temporibus qui minima. 18019", + "ga": " Voluptas natus error. 18020", + "gl": " Impedit corporis et. 18021", + "hr": " Molestiae ex omnis. 18022", + "hu": " Dignissimos maiores repudiandae. 18023", + "id": " Numquam dolorem et. 18024", + "is": " Temporibus rem reiciendis. 18025", + "it": " Consectetur id eaque. 18026", + "ja": " 急騰つばさ芸者。 18027", + "ko": " 보장하기 자유를 한다.. 18028", + "lb": " Aspernatur ab libero. 18029", + "lt": " At aperiam possimus. 18030", + "lv": " Atque veniam reprehenderit. 18031", + "mt": " Perferendis minima cum. 18032", + "nl": " Natus sit unde. 18033", + "no": " Minus sit nobis. 18034", + "pl": " Placeat earum numquam. 18035", + "pt": " Totam nulla voluptas. 18036", + "pt-BR": " Alias iure sunt. 18037", + "ro": " Modi natus maiores. 18038", + "ru": " Enim quis consequatur. 18039", + "sk": " Dolores ut est. 18040", + "sl": " Est repudiandae et. 18041", + "sr": " Cupiditate nihil aut. 18042", + "sv": " Molestiae voluptatem omnis. 18043", + "tr": " Sunt est eos. 18044", + "uk": " Laboriosam quos atque. 18045", + "vi": " Thôi khoan bè. 18046", + "zh-CN": " Molestiae dicta sed. 18047", + "zh-TW": "" }, "global_announcement": { "en": "", - "fr": "" + "bg": "", + "ar": "", + "ca": "", + "cs": "", + "da": "", + "de": "", + "el": "", + "eo": "", + "es": "", + "es-MX": "", + "es-PY": "", + "et": "", + "eu": "", + "fa": "", + "fi-pl": "", + "fi": "", + "fr": "", + "fr-CA": "", + "ga": "", + "gl": "", + "hr": "", + "hu": "", + "id": "", + "is": "", + "it": "", + "ja": "", + "ko": "", + "lb": "", + "lt": "", + "lv": "", + "mt": "", + "nl": "", + "no": "", + "pl": "", + "pt": "", + "pt-BR": "", + "ro": "", + "ru": "", + "sk": "", + "sl": "", + "sr": "", + "sv": "", + "tr": "", + "uk": "", + "vi": "", + "zh-CN": "", + "zh-TW": "" }, - "created_at": "2024-11-22T23:38:55Z", - "updated_at": "2024-11-22T23:38:55Z" + "created_at": "2024-12-01T23:24:13Z", + "updated_at": "2024-12-01T23:24:13Z" }, "relationships": { "resources": { @@ -1775,8 +2143,8 @@ } }, "links": { - "self": "https://25.lvh.me/api/rest_full/v0.0/components/10918", - "related": "https://25.lvh.me/api/rest_full/v0.0/participatory_processes/2634/meetings/10918" + "self": "https://25.lvh.me/api/rest_full/v0.0/components/13846", + "related": "https://25.lvh.me/api/rest_full/v0.0/participatory_processes/3352/meetings/13846" }, "meta": { "published": true, @@ -1789,32 +2157,124 @@ } }, { - "id": "10919", + "id": "13847", "type": "proposal_component", "attributes": { "manifest_name": "proposals", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2634", + "participatory_space_id": "3352", "name": { - "en": " Et reiciendis aut. 837", - "fr": "" + "en": " Impedit cupiditate nam. 20065", + "bg": " Harum et laborum. 20066", + "ar": " Id ut necessitatibus. 20067", + "ca": " Id id sed. 20068", + "cs": " Molestiae dolor ut. 20069", + "da": " Est nulla et. 20070", + "de": " Et maiores deleniti. 20071", + "el": " Sint autem minima. 20072", + "eo": " Consequatur expedita et. 20073", + "es": " Officia voluptas et. 20074", + "es-MX": " Quia aut et. 20075", + "es-PY": " Voluptas fuga sed. 20076", + "et": " Voluptatem et doloremque. 20077", + "eu": " Et et eaque. 20078", + "fa": " Officia cupiditate doloribus. 20079", + "fi-pl": " Est possimus qui. 20080", + "fi": " Excepturi nemo nulla. 20081", + "fr": " Porro occaecati sunt. 20082", + "fr-CA": " Placeat temporibus assumenda. 20083", + "ga": " Sunt et est. 20084", + "gl": " Ab qui repellendus. 20085", + "hr": " Et odio et. 20086", + "hu": " Nostrum et omnis. 20087", + "id": " Possimus reprehenderit sunt. 20088", + "is": " Quis ipsa ut. 20089", + "it": " In sunt eos. 20090", + "ja": " ちゅうもんするぼうずけいむしょ。 20091", + "ko": " 범죄에 국내법과 보호한다.. 20092", + "lb": " Aut corporis dolores. 20093", + "lt": " Quo facilis laboriosam. 20094", + "lv": " Veniam velit numquam. 20095", + "mt": " Hic aut delectus. 20096", + "nl": " Numquam exercitationem nisi. 20097", + "no": " Accusantium et aliquam. 20098", + "pl": " Voluptatem quos quis. 20099", + "pt": " Sunt qui natus. 20100", + "pt-BR": " Sint ea quia. 20101", + "ro": " Et ab aut. 20102", + "ru": " Vel dolore iure. 20103", + "sk": " Ratione dolores provident. 20104", + "sl": " Consectetur officiis laborum. 20105", + "sr": " Nostrum non velit. 20106", + "sv": " Corrupti in sint. 20107", + "tr": " Omnis ea et. 20108", + "uk": " Magnam molestias aut. 20109", + "vi": " Ghế vẽ làm. 20110", + "zh-CN": " Est sed quo. 20111", + "zh-TW": "" }, "global_announcement": { "en": "", - "fr": "" + "bg": "", + "ar": "", + "ca": "", + "cs": "", + "da": "", + "de": "", + "el": "", + "eo": "", + "es": "", + "es-MX": "", + "es-PY": "", + "et": "", + "eu": "", + "fa": "", + "fi-pl": "", + "fi": "", + "fr": "", + "fr-CA": "", + "ga": "", + "gl": "", + "hr": "", + "hu": "", + "id": "", + "is": "", + "it": "", + "ja": "", + "ko": "", + "lb": "", + "lt": "", + "lv": "", + "mt": "", + "nl": "", + "no": "", + "pl": "", + "pt": "", + "pt-BR": "", + "ro": "", + "ru": "", + "sk": "", + "sl": "", + "sr": "", + "sv": "", + "tr": "", + "uk": "", + "vi": "", + "zh-CN": "", + "zh-TW": "" }, - "created_at": "2024-11-22T23:38:55Z", - "updated_at": "2024-11-22T23:38:55Z" + "created_at": "2024-12-01T23:24:13Z", + "updated_at": "2024-12-01T23:24:13Z" }, "relationships": { "resources": { "data": [ { - "id": "4231", + "id": "5379", "type": "proposal" }, { - "id": "4232", + "id": "5380", "type": "proposal" } ], @@ -1824,8 +2284,8 @@ } }, "links": { - "self": "https://25.lvh.me/api/rest_full/v0.0/components/10919", - "related": "https://25.lvh.me/api/rest_full/v0.0/participatory_processes/2634/proposals/10919" + "self": "https://25.lvh.me/api/rest_full/v0.0/components/13847", + "related": "https://25.lvh.me/api/rest_full/v0.0/participatory_processes/3352/proposals/13847" }, "meta": { "published": true, @@ -1874,7 +2334,7 @@ } } }, - "/api/rest_full/v0.0/public/components/{id}": { + "/public/components/{id}": { "get": { "summary": "Show a Component", "tags": [ @@ -1904,7 +2364,53 @@ "type": "string", "enum": [ "en", - "fr" + "bg", + "ar", + "ca", + "cs", + "da", + "de", + "el", + "eo", + "es", + "es-MX", + "es-PY", + "et", + "eu", + "fa", + "fi-pl", + "fi", + "fr", + "fr-CA", + "ga", + "gl", + "hr", + "hu", + "id", + "is", + "it", + "ja", + "ko", + "lb", + "lt", + "lv", + "mt", + "nl", + "no", + "pl", + "pt", + "pt-BR", + "ro", + "ru", + "sk", + "sl", + "sr", + "sv", + "tr", + "uk", + "vi", + "zh-CN", + "zh-TW" ] } }, @@ -1928,40 +2434,40 @@ "ok": { "value": { "data": { - "id": "10937", + "id": "13865", "type": "meeting_component", "attributes": { "manifest_name": "meetings", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2637", + "participatory_space_id": "3355", "name": { - "en": " Aliquam rem culpa. 1357", - "fr": "" + "en": " Cum magni quasi. 32545", + "fr": " Est aut incidunt. 32562" }, "global_announcement": { "en": "", "fr": "" }, - "created_at": "2024-11-22T23:38:57Z", - "updated_at": "2024-11-22T23:38:57Z" + "created_at": "2024-12-01T23:24:17Z", + "updated_at": "2024-12-01T23:24:17Z" }, "relationships": { "resources": { "data": [ { - "id": "6309", + "id": "8127", "type": "meeting" }, { - "id": "6310", + "id": "8128", "type": "meeting" }, { - "id": "6311", + "id": "8129", "type": "meeting" }, { - "id": "6312", + "id": "8130", "type": "meeting" } ], @@ -1971,8 +2477,8 @@ } }, "links": { - "self": "https://34.lvh.me/api/rest_full/v0.0/components/10937", - "related": "https://34.lvh.me/api/rest_full/v0.0/participatory_processes/2637/meetings/10937" + "self": "https://34.lvh.me/api/rest_full/v0.0/components/13865", + "related": "https://34.lvh.me/api/rest_full/v0.0/participatory_processes/3355/meetings/13865" }, "meta": { "published": true, @@ -1990,38 +2496,38 @@ "select_FR_locale": { "value": { "data": { - "id": "10938", + "id": "13866", "type": "meeting_component", "attributes": { "manifest_name": "meetings", "participatory_space_type": "Decidim::ParticipatoryProcess", - "participatory_space_id": "2638", + "participatory_space_id": "3356", "name": { - "fr": "" + "fr": " Et officiis sunt. 37938" }, "global_announcement": { "fr": "" }, - "created_at": "2024-11-22T23:38:58Z", - "updated_at": "2024-11-22T23:38:58Z" + "created_at": "2024-12-01T23:24:18Z", + "updated_at": "2024-12-01T23:24:19Z" }, "relationships": { "resources": { "data": [ { - "id": "6313", + "id": "8131", "type": "meeting" }, { - "id": "6314", + "id": "8132", "type": "meeting" }, { - "id": "6315", + "id": "8133", "type": "meeting" }, { - "id": "6316", + "id": "8134", "type": "meeting" } ], @@ -2031,8 +2537,8 @@ } }, "links": { - "self": "https://39.lvh.me/api/rest_full/v0.0/components/10938", - "related": "https://39.lvh.me/api/rest_full/v0.0/participatory_processes/2638/meetings/10938" + "self": "https://39.lvh.me/api/rest_full/v0.0/components/13866", + "related": "https://39.lvh.me/api/rest_full/v0.0/participatory_processes/3356/meetings/13866" }, "meta": { "published": true, @@ -2105,7 +2611,7 @@ } } }, - "/api/rest_full/v0.0/public/spaces": { + "/public/spaces": { "get": { "summary": "List Participatory Spaces", "tags": [ @@ -2135,7 +2641,53 @@ "type": "string", "enum": [ "en", - "fr" + "bg", + "ar", + "ca", + "cs", + "da", + "de", + "el", + "eo", + "es", + "es-MX", + "es-PY", + "et", + "eu", + "fa", + "fi-pl", + "fi", + "fr", + "fr-CA", + "ga", + "gl", + "hr", + "hu", + "id", + "is", + "it", + "ja", + "ko", + "lb", + "lt", + "lv", + "mt", + "nl", + "no", + "pl", + "pt", + "pt-BR", + "ro", + "ru", + "sk", + "sl", + "sr", + "sv", + "tr", + "uk", + "vi", + "zh-CN", + "zh-TW" ] } }, @@ -2347,82 +2899,82 @@ "fr": "c'est une assemblée" }, "subtitle": { - "en": " Dolores ipsum accusantium. 2651", - "fr": "" + "en": " Rerum praesentium eligendi. 63601", + "fr": " Illum asperiores inventore. 63618" }, "short_description": { - "en": "

Tempora autem corrupti. 2653

", - "fr": "" + "en": "

Enim repellendus ea. 63649

", + "fr": "

Sint qui ut. 63666

" }, "description": { - "en": "

Adipisci officiis nam. 2655

", - "fr": "" + "en": "

Rerum est quia. 63697

", + "fr": "

Nihil inventore voluptatem. 63714

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { "data": [ { - "id": "10954", + "id": "13882", "type": "accountability_component" }, { - "id": "10957", + "id": "13885", "type": "blog_component" }, { - "id": "10952", + "id": "13880", "type": "budget_component" }, { - "id": "10955", + "id": "13883", "type": "debate_component" }, { - "id": "10951", + "id": "13879", "type": "meeting_component" }, { - "id": "10944", + "id": "13872", "type": "meeting_component" }, { - "id": "10948", + "id": "13876", "type": "meeting_component" }, { - "id": "10946", + "id": "13874", "type": "meeting_component" }, { - "id": "10949", + "id": "13877", "type": "page_component" }, { - "id": "10950", + "id": "13878", "type": "proposal_component" }, { - "id": "10945", + "id": "13873", "type": "proposal_component" }, { - "id": "10947", + "id": "13875", "type": "proposal_component" }, { - "id": "10943", + "id": "13871", "type": "proposal_component" }, { - "id": "10956", + "id": "13884", "type": "sortition_component" }, { - "id": "10953", + "id": "13881", "type": "survey_component" } ], @@ -2439,30 +2991,30 @@ } }, { - "id": "2651", + "id": "3371", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Ratione consequatur consequuntur. 2679", - "fr": "" + "en": " Est ipsa illum. 64273", + "fr": " Unde atque voluptates. 64290" }, "subtitle": { - "en": " Sequi voluptas commodi. 2681", - "fr": "" + "en": " Id beatae cupiditate. 64321", + "fr": " Adipisci iure ab. 64338" }, "short_description": { - "en": "

Eos et debitis. 2683

", - "fr": "" + "en": "

Sequi necessitatibus esse. 64369

", + "fr": "

Cum amet est. 64386

" }, "description": { - "en": "

Voluptatem voluptas aspernatur. 2685

", - "fr": "" + "en": "

Laboriosam magnam incidunt. 64417

", + "fr": "

Et est temporibus. 64434

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2473,39 +3025,39 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2651" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3371" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/2651" + "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/3371" } }, { - "id": "2643", + "id": "3361", "type": "space", "attributes": { "manifest_name": "participatory_processes", "participatory_space_type": "Decidim::ParticipatoryProcess", "title": { - "en": " Ea officia error. 2709", - "fr": "" + "en": " Impedit ab fuga. 64993", + "fr": " Unde voluptas ut. 65010" }, "subtitle": { - "en": " Doloribus enim illum. 2711", - "fr": "" + "en": " Est qui fuga. 65041", + "fr": " Ratione consequatur qui. 65058" }, "short_description": { - "en": "

Consectetur quaerat impedit. 2713

", - "fr": "" + "en": "

Maxime qui quam. 65089

", + "fr": "

Sed est ut. 65106

" }, "description": { - "en": "

Provident et voluptatum. 2715

", - "fr": "" + "en": "

Et a velit. 65137

", + "fr": "

Nemo voluptatem ipsa. 65154

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2516,39 +3068,39 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=2643" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=3361" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/2643" + "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/3361" } }, { - "id": "2652", + "id": "3372", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Adipisci fugit labore. 2729", - "fr": "" + "en": " Facere et quia. 65473", + "fr": " Ut ad soluta. 65490" }, "subtitle": { - "en": " Voluptas enim dolorum. 2731", - "fr": "" + "en": " Et sed est. 65521", + "fr": " Ut et provident. 65538" }, "short_description": { - "en": "

Odio amet esse. 2733

", - "fr": "" + "en": "

Et nam et. 65569

", + "fr": "

Aut voluptas dolor. 65586

" }, "description": { - "en": "

Qui quia veritatis. 2735

", - "fr": "" + "en": "

Magni necessitatibus eaque. 65617

", + "fr": "

Officiis tenetur molestias. 65634

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2559,39 +3111,39 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2652" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3372" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/2652" + "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/3372" } }, { - "id": "2644", + "id": "3362", "type": "space", "attributes": { "manifest_name": "participatory_processes", "participatory_space_type": "Decidim::ParticipatoryProcess", "title": { - "en": " Ut molestiae qui. 2759", - "fr": "" + "en": " Numquam magni sit. 66193", + "fr": " Vel tempore provident. 66210" }, "subtitle": { - "en": " At excepturi dolorem. 2761", - "fr": "" + "en": " Quia corrupti magnam. 66241", + "fr": " Dolor aspernatur dolorem. 66258" }, "short_description": { - "en": "

Et non enim. 2763

", - "fr": "" + "en": "

Repudiandae qui dignissimos. 66289

", + "fr": "

Laborum aliquid iste. 66306

" }, "description": { - "en": "

Voluptates vero accusantium. 2765

", - "fr": "" + "en": "

Alias labore itaque. 66337

", + "fr": "

Fugit enim minus. 66354

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2602,39 +3154,39 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=2644" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=3362" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/2644" + "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/3362" } }, { - "id": "2653", + "id": "3373", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Quasi vel vero. 2779", - "fr": "" + "en": " Possimus dicta est. 66673", + "fr": " Et velit fugiat. 66690" }, "subtitle": { - "en": " Debitis rem nihil. 2781", - "fr": "" + "en": " Non et id. 66721", + "fr": " Officiis qui vero. 66738" }, "short_description": { - "en": "

Aperiam voluptatibus expedita. 2783

", - "fr": "" + "en": "

Autem corporis molestiae. 66769

", + "fr": "

Odit exercitationem modi. 66786

" }, "description": { - "en": "

Et quas eligendi. 2785

", - "fr": "" + "en": "

Dolore molestiae deleniti. 66817

", + "fr": "

Cumque optio voluptas. 66834

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2645,39 +3197,39 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2653" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3373" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/2653" + "self": "https://64.lvh.me/api/rest_full/v0.0/assemblies/3373" } }, { - "id": "2645", + "id": "3363", "type": "space", "attributes": { "manifest_name": "participatory_processes", "participatory_space_type": "Decidim::ParticipatoryProcess", "title": { - "en": " Nobis doloremque praesentium. 2809", - "fr": "" + "en": " Repudiandae amet saepe. 67393", + "fr": " Laudantium nihil blanditiis. 67410" }, "subtitle": { - "en": " Odit dignissimos modi. 2811", - "fr": "" + "en": " Odit natus numquam. 67441", + "fr": " Rerum consequatur at. 67458" }, "short_description": { - "en": "

Quis aliquid perferendis. 2813

", - "fr": "" + "en": "

Eaque aperiam sed. 67489

", + "fr": "

Eum et et. 67506

" }, "description": { - "en": "

Non alias odit. 2815

", - "fr": "" + "en": "

Velit et maiores. 67537

", + "fr": "

Dolore minus consequuntur. 67554

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:00Z", - "updated_at": "2024-11-22T23:39:00Z" + "created_at": "2024-12-01T23:24:25Z", + "updated_at": "2024-12-01T23:24:25Z" }, "relationships": { "components": { @@ -2688,12 +3240,12 @@ "count": 0 }, "links": { - "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=2645" + "related": "https://64.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::ParticipatoryProcess&filter[participatory_space_id_eq]=3363" } } }, "links": { - "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/2645" + "self": "https://64.lvh.me/api/rest_full/v0.0/participatory_processes/3363" } } ] @@ -2713,82 +3265,82 @@ "fr": "c'est une assemblée" }, "subtitle": { - "en": " Ad praesentium dolorem. 3227", - "fr": "" + "en": " Et et id. 77425", + "fr": " Voluptate harum aut. 77442" }, "short_description": { - "en": "

Aut omnis nemo. 3229

", - "fr": "" + "en": "

Expedita et voluptates. 77473

", + "fr": "

Est aut ratione. 77490

" }, "description": { - "en": "

Quisquam impedit quo. 3231

", - "fr": "" + "en": "

Velit sed aperiam. 77521

", + "fr": "

Neque est minima. 77538

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:01Z", - "updated_at": "2024-11-22T23:39:01Z" + "created_at": "2024-12-01T23:24:27Z", + "updated_at": "2024-12-01T23:24:27Z" }, "relationships": { "components": { "data": [ { - "id": "10969", + "id": "13897", "type": "accountability_component" }, { - "id": "10972", + "id": "13900", "type": "blog_component" }, { - "id": "10967", + "id": "13895", "type": "budget_component" }, { - "id": "10970", + "id": "13898", "type": "debate_component" }, { - "id": "10963", + "id": "13894", "type": "meeting_component" }, { - "id": "10959", + "id": "13887", "type": "meeting_component" }, { - "id": "10966", + "id": "13891", "type": "meeting_component" }, { - "id": "10961", + "id": "13889", "type": "meeting_component" }, { - "id": "10964", + "id": "13892", "type": "page_component" }, { - "id": "10960", + "id": "13893", "type": "proposal_component" }, { - "id": "10958", + "id": "13888", "type": "proposal_component" }, { - "id": "10962", + "id": "13890", "type": "proposal_component" }, { - "id": "10965", + "id": "13886", "type": "proposal_component" }, { - "id": "10971", + "id": "13899", "type": "sortition_component" }, { - "id": "10968", + "id": "13896", "type": "survey_component" } ], @@ -2805,30 +3357,30 @@ } }, { - "id": "2654", + "id": "3374", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Rerum tenetur similique. 3255", - "fr": "" + "en": " Ad aperiam eveniet. 78097", + "fr": " Aut consequatur libero. 78114" }, "subtitle": { - "en": " Perspiciatis dolorem amet. 3257", - "fr": "" + "en": " Rerum voluptate facilis. 78145", + "fr": " Dolores illum iusto. 78162" }, "short_description": { - "en": "

Nostrum non ut. 3259

", - "fr": "" + "en": "

Adipisci ratione et. 78193

", + "fr": "

Perspiciatis ipsa architecto. 78210

" }, "description": { - "en": "

Dolores porro et. 3261

", - "fr": "" + "en": "

Quasi et eveniet. 78241

", + "fr": "

Recusandae ut magni. 78258

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:01Z", - "updated_at": "2024-11-22T23:39:01Z" + "created_at": "2024-12-01T23:24:27Z", + "updated_at": "2024-12-01T23:24:27Z" }, "relationships": { "components": { @@ -2839,39 +3391,39 @@ "count": 0 }, "links": { - "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2654" + "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3374" } } }, "links": { - "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/2654" + "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/3374" } }, { - "id": "2655", + "id": "3375", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Quae quo qui. 3305", - "fr": "" + "en": " Voluptatem voluptatem sed. 79297", + "fr": " Natus veritatis architecto. 79314" }, "subtitle": { - "en": " Iure possimus qui. 3307", - "fr": "" + "en": " Maxime et beatae. 79345", + "fr": " Voluptates modi velit. 79362" }, "short_description": { - "en": "

Aut omnis qui. 3309

", - "fr": "" + "en": "

Totam officia voluptatibus. 79393

", + "fr": "

Ratione doloremque tenetur. 79410

" }, "description": { - "en": "

Consequatur autem ipsa. 3311

", - "fr": "" + "en": "

Voluptatum est maxime. 79441

", + "fr": "

Ab suscipit illo. 79458

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:01Z", - "updated_at": "2024-11-22T23:39:01Z" + "created_at": "2024-12-01T23:24:27Z", + "updated_at": "2024-12-01T23:24:28Z" }, "relationships": { "components": { @@ -2882,39 +3434,39 @@ "count": 0 }, "links": { - "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2655" + "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3375" } } }, "links": { - "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/2655" + "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/3375" } }, { - "id": "2656", + "id": "3376", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Id qui fugiat. 3355", - "fr": "" + "en": " Odio alias autem. 80497", + "fr": " Nihil qui voluptatem. 80514" }, "subtitle": { - "en": " Voluptas quibusdam voluptate. 3357", - "fr": "" + "en": " Vitae temporibus et. 80545", + "fr": " Saepe beatae ut. 80562" }, "short_description": { - "en": "

Repellendus nisi sit. 3359

", - "fr": "" + "en": "

Enim doloribus cum. 80593

", + "fr": "

Possimus molestiae ducimus. 80610

" }, "description": { - "en": "

Culpa repudiandae optio. 3361

", - "fr": "" + "en": "

Fuga totam ratione. 80641

", + "fr": "

Doloribus aliquam sunt. 80658

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:01Z", - "updated_at": "2024-11-22T23:39:01Z" + "created_at": "2024-12-01T23:24:28Z", + "updated_at": "2024-12-01T23:24:28Z" }, "relationships": { "components": { @@ -2925,12 +3477,12 @@ "count": 0 }, "links": { - "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2656" + "related": "https://71.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3376" } } }, "links": { - "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/2656" + "self": "https://71.lvh.me/api/rest_full/v0.0/assemblies/3376" } } ] @@ -2950,82 +3502,82 @@ "fr": "c'est une assemblée" }, "subtitle": { - "en": " Eius nisi ut. 3803", - "fr": "" + "en": " Ab in provident. 91249", + "fr": " Eos explicabo sed. 91266" }, "short_description": { - "en": "

Earum ut voluptate. 3805

", - "fr": "" + "en": "

Omnis tempore quaerat. 91297

", + "fr": "

Ipsa necessitatibus qui. 91314

" }, "description": { - "en": "

Esse velit dolorem. 3807

", - "fr": "" + "en": "

Veniam consequuntur incidunt. 91345

", + "fr": "

Officiis est rerum. 91362

" }, "visibility": "public", - "created_at": "2024-11-22T23:39:01Z", - "updated_at": "2024-11-22T23:39:01Z" + "created_at": "2024-12-01T23:24:29Z", + "updated_at": "2024-12-01T23:24:30Z" }, "relationships": { "components": { "data": [ { - "id": "10984", + "id": "13912", "type": "accountability_component" }, { - "id": "10987", + "id": "13915", "type": "blog_component" }, { - "id": "10982", + "id": "13910", "type": "budget_component" }, { - "id": "10985", + "id": "13913", "type": "debate_component" }, { - "id": "10981", + "id": "13909", "type": "meeting_component" }, { - "id": "10974", + "id": "13902", "type": "meeting_component" }, { - "id": "10978", + "id": "13906", "type": "meeting_component" }, { - "id": "10976", + "id": "13904", "type": "meeting_component" }, { - "id": "10979", + "id": "13907", "type": "page_component" }, { - "id": "10980", + "id": "13908", "type": "proposal_component" }, { - "id": "10975", + "id": "13903", "type": "proposal_component" }, { - "id": "10977", + "id": "13905", "type": "proposal_component" }, { - "id": "10973", + "id": "13901", "type": "proposal_component" }, { - "id": "10986", + "id": "13914", "type": "sortition_component" }, { - "id": "10983", + "id": "13911", "type": "survey_component" } ], @@ -3055,85 +3607,269 @@ "participatory_space_type": "Decidim::Assembly", "title": { "en": "My assembly for testing purpose", - "fr": "c'est une assemblée" + "bg": "", + "ar": "", + "ca": "", + "cs": "", + "da": "", + "de": "", + "el": "", + "eo": "", + "es": "", + "es-MX": "", + "es-PY": "", + "et": "", + "eu": "", + "fa": "", + "fi-pl": "", + "fi": "", + "fr": "c'est une assemblée", + "fr-CA": "", + "ga": "", + "gl": "", + "hr": "", + "hu": "", + "id": "", + "is": "", + "it": "", + "ja": "", + "ko": "", + "lb": "", + "lt": "", + "lv": "", + "mt": "", + "nl": "", + "no": "", + "pl": "", + "pt": "", + "pt-BR": "", + "ro": "", + "ru": "", + "sk": "", + "sl": "", + "sr": "", + "sv": "", + "tr": "", + "uk": "", + "vi": "", + "zh-CN": "", + "zh-TW": "" }, "subtitle": { - "en": " Nam dolores rem. 4379", - "fr": "" + "en": " Sit voluptatem nulla. 105073", + "bg": " Earum aperiam vel. 105074", + "ar": " Corrupti tempora eos. 105075", + "ca": " Qui consequatur aut. 105076", + "cs": " Repellendus sunt rem. 105077", + "da": " Officiis sunt illo. 105078", + "de": " Officia assumenda ipsum. 105079", + "el": " Adipisci odio dolor. 105080", + "eo": " Assumenda iusto nobis. 105081", + "es": " Et expedita qui. 105082", + "es-MX": " Neque dolorem ad. 105083", + "es-PY": " Perspiciatis aut est. 105084", + "et": " Numquam minima repudiandae. 105085", + "eu": " Officiis qui hic. 105086", + "fa": " Nobis nihil earum. 105087", + "fi-pl": " Aut vitae consectetur. 105088", + "fi": " Et ipsam dolor. 105089", + "fr": " Assumenda quam quia. 105090", + "fr-CA": " Consectetur alias reprehenderit. 105091", + "ga": " Praesentium quae mollitia. 105092", + "gl": " Aliquid totam culpa. 105093", + "hr": " Repellendus laboriosam numquam. 105094", + "hu": " Et neque voluptatem. 105095", + "id": " Optio et impedit. 105096", + "is": " Rerum mollitia eaque. 105097", + "it": " Nihil recusandae non. 105098", + "ja": " きょうきじじょでんはだか。 105099", + "ko": " 시설기준과 범죄에 신체의. 105100", + "lb": " Mollitia velit rerum. 105101", + "lt": " Placeat laborum libero. 105102", + "lv": " Reiciendis est ipsa. 105103", + "mt": " Sapiente est qui. 105104", + "nl": " Minima ea omnis. 105105", + "no": " Aspernatur qui ut. 105106", + "pl": " Cupiditate et nisi. 105107", + "pt": " Debitis sapiente consequuntur. 105108", + "pt-BR": " Officia nisi minima. 105109", + "ro": " Quidem in dignissimos. 105110", + "ru": " Quas in et. 105111", + "sk": " Velit dolores sed. 105112", + "sl": " Voluptatem doloremque ducimus. 105113", + "sr": " Dolorem consequatur sit. 105114", + "sv": " Eum dolorem iste. 105115", + "tr": " Expedita et quia. 105116", + "uk": " Et iusto temporibus. 105117", + "vi": " Một được leo. 105118", + "zh-CN": " Eveniet sed mollitia. 105119", + "zh-TW": "" }, "short_description": { - "en": "

Fugiat ea et. 4381

", - "fr": "" + "en": "

Voluptatem et est. 105121

", + "bg": "

In nulla consequatur. 105122

", + "ar": "

Iure amet est. 105123

", + "ca": "

Quaerat aut earum. 105124

", + "cs": "

Ducimus et nulla. 105125

", + "da": "

Porro aut accusamus. 105126

", + "de": "

Exercitationem laboriosam id. 105127

", + "el": "

Doloribus fuga cumque. 105128

", + "eo": "

Non natus consequatur. 105129

", + "es": "

Consequatur maxime nihil. 105130

", + "es-MX": "

Id quia unde. 105131

", + "es-PY": "

Consectetur eius illo. 105132

", + "et": "

Aliquam nesciunt cum. 105133

", + "eu": "

Dolorem tenetur atque. 105134

", + "fa": "

Qui molestiae ut. 105135

", + "fi-pl": "

Enim provident sit. 105136

", + "fi": "

Quidem cumque ducimus. 105137

", + "fr": "

Modi iure numquam. 105138

", + "fr-CA": "

Corrupti repellendus aut. 105139

", + "ga": "

Aut temporibus quam. 105140

", + "gl": "

Ipsa facilis maiores. 105141

", + "hr": "

Molestias quia facere. 105142

", + "hu": "

Maxime impedit sed. 105143

", + "id": "

Rerum exercitationem inventore. 105144

", + "is": "

Tenetur rem similique. 105145

", + "it": "

Voluptatem omnis cumque. 105146

", + "ja": "

ふさい脱税超〜。 105147

", + "ko": "

동일한 계승·발전과 저작자·발명가·과학기술자와. 105148

", + "lb": "

Incidunt amet et. 105149

", + "lt": "

Aut sunt cupiditate. 105150

", + "lv": "

Aperiam veritatis blanditiis. 105151

", + "mt": "

Ut aut omnis. 105152

", + "nl": "

Consequuntur natus recusandae. 105153

", + "no": "

Qui illo vitae. 105154

", + "pl": "

Quisquam harum tenetur. 105155

", + "pt": "

Quia facilis enim. 105156

", + "pt-BR": "

Illum magni autem. 105157

", + "ro": "

Officia incidunt unde. 105158

", + "ru": "

Aut repellendus ut. 105159

", + "sk": "

Tenetur inventore aut. 105160

", + "sl": "

Sit veniam itaque. 105161

", + "sr": "

Aut tenetur ut. 105162

", + "sv": "

Nemo dolorum explicabo. 105163

", + "tr": "

Commodi consequatur ut. 105164

", + "uk": "

Molestiae quod est. 105165

", + "vi": "

Cửa kim leo. 105166

", + "zh-CN": "

Nemo itaque aliquam. 105167

", + "zh-TW": "" }, "description": { - "en": "

Qui optio voluptatem. 4383

", - "fr": "" + "en": "

Deleniti dolorem eaque. 105169

", + "bg": "

Eaque consequatur id. 105170

", + "ar": "

Nobis reprehenderit iusto. 105171

", + "ca": "

Laborum tenetur et. 105172

", + "cs": "

Est voluptatibus totam. 105173

", + "da": "

At sunt qui. 105174

", + "de": "

Commodi ipsum qui. 105175

", + "el": "

Et quas est. 105176

", + "eo": "

Sed ad minus. 105177

", + "es": "

Eos corporis natus. 105178

", + "es-MX": "

Distinctio et assumenda. 105179

", + "es-PY": "

Qui veritatis voluptas. 105180

", + "et": "

Et sunt repellendus. 105181

", + "eu": "

Alias nobis quia. 105182

", + "fa": "

Reiciendis optio maxime. 105183

", + "fi-pl": "

Recusandae ut illo. 105184

", + "fi": "

Est et et. 105185

", + "fr": "

Dolores fuga voluptatum. 105186

", + "fr-CA": "

Doloribus sed nihil. 105187

", + "ga": "

Illo voluptates aliquid. 105188

", + "gl": "

Totam et corrupti. 105189

", + "hr": "

Illo voluptatum possimus. 105190

", + "hu": "

Aspernatur dolor excepturi. 105191

", + "id": "

Dolores velit natus. 105192

", + "is": "

Sit aperiam eaque. 105193

", + "it": "

Qui perferendis rem. 105194

", + "ja": "

ぼうずみなとしえんする。 105195

", + "ko": "

진다. 저작자·발명가·과학기술자와 가진다.. 105196

", + "lb": "

Ratione nam ea. 105197

", + "lt": "

In maxime officiis. 105198

", + "lv": "

Voluptatem sed non. 105199

", + "mt": "

Assumenda et sequi. 105200

", + "nl": "

Alias fugiat aut. 105201

", + "no": "

Excepturi porro eum. 105202

", + "pl": "

Perferendis expedita officia. 105203

", + "pt": "

Est laborum est. 105204

", + "pt-BR": "

Impedit error sunt. 105205

", + "ro": "

Blanditiis fuga officia. 105206

", + "ru": "

Excepturi architecto tempora. 105207

", + "sk": "

Voluptas fugiat aut. 105208

", + "sl": "

Sed consequatur ducimus. 105209

", + "sr": "

Quae aut omnis. 105210

", + "sv": "

Fugiat dolores quia. 105211

", + "tr": "

Enim et harum. 105212

", + "uk": "

Voluptatum repellendus qui. 105213

", + "vi": "

Biển mây bạn. 105214

", + "zh-CN": "

Quia dolores similique. 105215

", + "zh-TW": "" }, "visibility": "public", - "created_at": "2024-11-22T23:39:02Z", - "updated_at": "2024-11-22T23:39:02Z" + "created_at": "2024-12-01T23:24:32Z", + "updated_at": "2024-12-01T23:24:32Z" }, "relationships": { "components": { "data": [ { - "id": "10999", + "id": "13927", "type": "accountability_component" }, { - "id": "11002", + "id": "13930", "type": "blog_component" }, { - "id": "10997", + "id": "13925", "type": "budget_component" }, { - "id": "11000", + "id": "13928", "type": "debate_component" }, { - "id": "10993", + "id": "13924", "type": "meeting_component" }, { - "id": "10989", + "id": "13917", "type": "meeting_component" }, { - "id": "10996", + "id": "13921", "type": "meeting_component" }, { - "id": "10991", + "id": "13919", "type": "meeting_component" }, { - "id": "10994", + "id": "13922", "type": "page_component" }, { - "id": "10990", + "id": "13923", "type": "proposal_component" }, { - "id": "10988", + "id": "13918", "type": "proposal_component" }, { - "id": "10992", + "id": "13920", "type": "proposal_component" }, { - "id": "10995", + "id": "13916", "type": "proposal_component" }, { - "id": "11001", + "id": "13929", "type": "sortition_component" }, { - "id": "10998", + "id": "13926", "type": "survey_component" } ], @@ -3150,30 +3886,214 @@ } }, { - "id": "2660", + "id": "3380", "type": "space", "attributes": { "manifest_name": "assemblies", "participatory_space_type": "Decidim::Assembly", "title": { - "en": " Quos fugit rerum. 4407", - "fr": "" + "en": " Veritatis molestiae voluptate. 105745", + "bg": " Dolor laboriosam delectus. 105746", + "ar": " Ipsum odit non. 105747", + "ca": " Minus cum velit. 105748", + "cs": " Doloribus recusandae non. 105749", + "da": " Est odio non. 105750", + "de": " Minima sunt animi. 105751", + "el": " Quod facilis rem. 105752", + "eo": " Quis sequi harum. 105753", + "es": " Et reprehenderit adipisci. 105754", + "es-MX": " Eum quia dolorem. 105755", + "es-PY": " At repudiandae doloribus. 105756", + "et": " Itaque ab aspernatur. 105757", + "eu": " Tempora doloribus enim. 105758", + "fa": " Est aut vel. 105759", + "fi-pl": " Est et vero. 105760", + "fi": " Provident et a. 105761", + "fr": " Facilis ea ullam. 105762", + "fr-CA": " Ad saepe iure. 105763", + "ga": " Culpa illum omnis. 105764", + "gl": " Iste aut soluta. 105765", + "hr": " Eius et quo. 105766", + "hu": " Est quibusdam quis. 105767", + "id": " Rerum libero delectus. 105768", + "is": " Error ad laudantium. 105769", + "it": " Totam mollitia et. 105770", + "ja": " きょうかい馬果樹。 105771", + "ko": " 현행범인인 있을 헌법에. 105772", + "lb": " Omnis deleniti optio. 105773", + "lt": " Aut ipsum qui. 105774", + "lv": " At veniam maxime. 105775", + "mt": " Beatae et corporis. 105776", + "nl": " Beatae animi nam. 105777", + "no": " Laboriosam in id. 105778", + "pl": " Harum odit aperiam. 105779", + "pt": " Iste aut quisquam. 105780", + "pt-BR": " Ipsa et omnis. 105781", + "ro": " Consequuntur labore nam. 105782", + "ru": " Odit doloribus eveniet. 105783", + "sk": " Nulla id praesentium. 105784", + "sl": " Pariatur excepturi vitae. 105785", + "sr": " Voluptas quia rerum. 105786", + "sv": " Animi nesciunt qui. 105787", + "tr": " Placeat hic maxime. 105788", + "uk": " Nesciunt odio ut. 105789", + "vi": " Máy chìm núi. 105790", + "zh-CN": " Consequatur officiis rerum. 105791", + "zh-TW": "" }, "subtitle": { - "en": " Omnis hic quo. 4409", - "fr": "" + "en": " Illum distinctio quas. 105793", + "bg": " Omnis quis soluta. 105794", + "ar": " Rerum quis dignissimos. 105795", + "ca": " Fuga aliquam est. 105796", + "cs": " Voluptas voluptatum at. 105797", + "da": " Voluptas fugit incidunt. 105798", + "de": " Libero cum ut. 105799", + "el": " Sint consequuntur cumque. 105800", + "eo": " Accusamus est quia. 105801", + "es": " Dolor dolorem dolores. 105802", + "es-MX": " Quaerat laboriosam ipsam. 105803", + "es-PY": " Laboriosam qui magnam. 105804", + "et": " Et reiciendis cumque. 105805", + "eu": " Tempore et aperiam. 105806", + "fa": " Ipsam dolores sit. 105807", + "fi-pl": " Adipisci impedit minima. 105808", + "fi": " Rerum consequatur eos. 105809", + "fr": " Ut pariatur et. 105810", + "fr-CA": " Minima quasi qui. 105811", + "ga": " Officiis et iusto. 105812", + "gl": " Quaerat expedita error. 105813", + "hr": " Voluptas aut eum. 105814", + "hu": " Ut sapiente vitae. 105815", + "id": " Aliquam vero impedit. 105816", + "is": " Accusamus nemo eligendi. 105817", + "it": " Occaecati voluptas nemo. 105818", + "ja": " まつ話見当たる。 105819", + "ko": " 위하여 평생교육을 자유를. 105820", + "lb": " Laboriosam assumenda in. 105821", + "lt": " Dolor laudantium ullam. 105822", + "lv": " Rem facilis corporis. 105823", + "mt": " Ea adipisci sint. 105824", + "nl": " Iusto et aliquam. 105825", + "no": " Voluptatum officia quasi. 105826", + "pl": " Ex aspernatur repudiandae. 105827", + "pt": " Illo at sint. 105828", + "pt-BR": " Cum incidunt culpa. 105829", + "ro": " Aperiam repellat itaque. 105830", + "ru": " Neque sapiente et. 105831", + "sk": " Sequi eum ut. 105832", + "sl": " Aut at sapiente. 105833", + "sr": " Alias expedita neque. 105834", + "sv": " Ut molestiae minima. 105835", + "tr": " Necessitatibus culpa quis. 105836", + "uk": " Error facere consequatur. 105837", + "vi": " Giết anh tím. 105838", + "zh-CN": " Eaque consequatur et. 105839", + "zh-TW": "" }, "short_description": { - "en": "

Eum asperiores quae. 4411

", - "fr": "" + "en": "

Expedita quidem voluptatum. 105841

", + "bg": "

Voluptas unde quia. 105842

", + "ar": "

Sed ut deleniti. 105843

", + "ca": "

Fuga consequuntur qui. 105844

", + "cs": "

Repudiandae fuga occaecati. 105845

", + "da": "

Eum error beatae. 105846

", + "de": "

Quia omnis quibusdam. 105847

", + "el": "

Sit vel quia. 105848

", + "eo": "

Quia voluptatibus beatae. 105849

", + "es": "

Repudiandae ut eligendi. 105850

", + "es-MX": "

Nihil dolor cum. 105851

", + "es-PY": "

Temporibus aliquid unde. 105852

", + "et": "

Fugit harum tempora. 105853

", + "eu": "

Esse eos iure. 105854

", + "fa": "

Vel ea odio. 105855

", + "fi-pl": "

Corrupti eos perspiciatis. 105856

", + "fi": "

Quaerat perferendis tenetur. 105857

", + "fr": "

Dolores architecto est. 105858

", + "fr-CA": "

Excepturi praesentium voluptate. 105859

", + "ga": "

Ea beatae ipsam. 105860

", + "gl": "

Ut modi ratione. 105861

", + "hr": "

Pariatur quia est. 105862

", + "hu": "

Nobis dolorem ab. 105863

", + "id": "

Non id accusantium. 105864

", + "is": "

Non ullam eligendi. 105865

", + "it": "

Consequatur commodi et. 105866

", + "ja": "

もうすフランス人ぶっきょう。 105867

", + "ko": "

판결이 때에는 효력을. 105868

", + "lb": "

Magni et ut. 105869

", + "lt": "

Est saepe perferendis. 105870

", + "lv": "

Asperiores cumque porro. 105871

", + "mt": "

Eligendi dolorem autem. 105872

", + "nl": "

Et unde non. 105873

", + "no": "

Molestiae amet repudiandae. 105874

", + "pl": "

Qui nam ut. 105875

", + "pt": "

Delectus aut et. 105876

", + "pt-BR": "

Adipisci ratione eum. 105877

", + "ro": "

Itaque est nihil. 105878

", + "ru": "

Aut et adipisci. 105879

", + "sk": "

Vero in perferendis. 105880

", + "sl": "

Occaecati non labore. 105881

", + "sr": "

Voluptatem corrupti nesciunt. 105882

", + "sv": "

Error consectetur minus. 105883

", + "tr": "

Non velit ratione. 105884

", + "uk": "

Provident ea omnis. 105885

", + "vi": "

Tui thôi tôi. 105886

", + "zh-CN": "

Rem vel tenetur. 105887

", + "zh-TW": "" }, "description": { - "en": "

Qui eius placeat. 4413

", - "fr": "" + "en": "

Qui voluptates voluptatem. 105889

", + "bg": "

Aut alias optio. 105890

", + "ar": "

Omnis voluptas ea. 105891

", + "ca": "

Magni aut quo. 105892

", + "cs": "

Perspiciatis ducimus labore. 105893

", + "da": "

Ut et perspiciatis. 105894

", + "de": "

Adipisci ut necessitatibus. 105895

", + "el": "

Dolores non cupiditate. 105896

", + "eo": "

Quo dignissimos vel. 105897

", + "es": "

Enim occaecati inventore. 105898

", + "es-MX": "

Ut adipisci cumque. 105899

", + "es-PY": "

Soluta necessitatibus modi. 105900

", + "et": "

Placeat nulla amet. 105901

", + "eu": "

Rerum officiis eveniet. 105902

", + "fa": "

Voluptatem quaerat cum. 105903

", + "fi-pl": "

Sunt maxime velit. 105904

", + "fi": "

Voluptatem in nemo. 105905

", + "fr": "

Beatae deleniti eos. 105906

", + "fr-CA": "

Dolorem nemo voluptas. 105907

", + "ga": "

Fugiat sint fugit. 105908

", + "gl": "

Quaerat reiciendis magni. 105909

", + "hr": "

Voluptas atque doloribus. 105910

", + "hu": "

Eaque inventore sed. 105911

", + "id": "

Quo officiis sit. 105912

", + "is": "

Est aut iusto. 105913

", + "it": "

Consequuntur illo expedita. 105914

", + "ja": "

間隔むらさきいろ狂う。 105915

", + "ko": "

구성하지 법률로써 정하는. 105916

", + "lb": "

Explicabo sequi pariatur. 105917

", + "lt": "

Recusandae possimus in. 105918

", + "lv": "

Fuga animi ipsa. 105919

", + "mt": "

Omnis suscipit dolorem. 105920

", + "nl": "

Et consectetur cumque. 105921

", + "no": "

Qui distinctio alias. 105922

", + "pl": "

Saepe sed autem. 105923

", + "pt": "

Laboriosam eius sed. 105924

", + "pt-BR": "

Nobis ipsam possimus. 105925

", + "ro": "

Doloremque maxime nobis. 105926

", + "ru": "

Tempora nesciunt fugiat. 105927

", + "sk": "

Illum quaerat harum. 105928

", + "sl": "

Reprehenderit voluptas aperiam. 105929

", + "sr": "

Fugit dolores asperiores. 105930

", + "sv": "

Unde non error. 105931

", + "tr": "

Occaecati non laboriosam. 105932

", + "uk": "

Et magnam quia. 105933

", + "vi": "

Ba đập núi. 105934

", + "zh-CN": "

Dignissimos ipsum est. 105935

", + "zh-TW": "" }, "visibility": "public", - "created_at": "2024-11-22T23:39:02Z", - "updated_at": "2024-11-22T23:39:02Z" + "created_at": "2024-12-01T23:24:32Z", + "updated_at": "2024-12-01T23:24:32Z" }, "relationships": { "components": { @@ -3184,12 +4104,12 @@ "count": 0 }, "links": { - "related": "https://85.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=2660" + "related": "https://85.lvh.me/api/rest_full/v0.0/components?filter[participatory_space_type_eq]=Decidim::Assembly&filter[participatory_space_id_eq]=3380" } } }, "links": { - "self": "https://85.lvh.me/api/rest_full/v0.0/assemblies/2660" + "self": "https://85.lvh.me/api/rest_full/v0.0/assemblies/3380" } } ] @@ -3234,7 +4154,7 @@ } } }, - "/api/rest_full/v0.0/system/organizations": { + "/system/organizations": { "get": { "summary": "List available organizations", "tags": [ @@ -3248,26 +4168,6 @@ } ], "parameters": [ - { - "name": "populate[]", - "in": "query", - "style": "form", - "explode": true, - "schema": { - "type": "array", - "items": { - "type": "string", - "enum": [ - "host", - "secondary_hosts", - "name", - "created_at", - "updated_at" - ] - } - }, - "required": false - }, { "name": "locales[]", "in": "query", @@ -3279,7 +4179,53 @@ "type": "string", "enum": [ "en", - "fr" + "bg", + "ar", + "ca", + "cs", + "da", + "de", + "el", + "eo", + "es", + "es-MX", + "es-PY", + "et", + "eu", + "fa", + "fi-pl", + "fi", + "fr", + "fr-CA", + "ga", + "gl", + "hr", + "hu", + "id", + "is", + "it", + "ja", + "ko", + "lb", + "lt", + "lv", + "mt", + "nl", + "no", + "pl", + "pt", + "pt-BR", + "ro", + "ru", + "sk", + "sl", + "sr", + "sv", + "tr", + "uk", + "vi", + "zh-CN", + "zh-TW" ] } }, @@ -3314,7 +4260,30 @@ "value": { "data": [ { - "id": "4349", + "id": "4363", + "type": "organization", + "attributes": { + "host": "localhost", + "secondary_hosts": [ + "0.0.0.0", + "127.0.0.1" + ], + "name": { + "en": "Fahey-Keeling", + "fr": "Perret et Remy" + }, + "created_at": "2024-11-25T05:30:20Z", + "updated_at": "2024-11-25T05:30:24Z" + }, + "meta": { + "locales": [ + "en", + "fr" + ] + } + }, + { + "id": "6178", "type": "organization", "attributes": { "host": "109.lvh.me", @@ -3322,11 +4291,33 @@ ], "name": { - "en": "Blick-Douglas", - "fr": "Medhurst Inc" + "en": "Crooks-Dare", + "fr": "Gibson-Hartmann" + }, + "created_at": "2024-12-01T23:24:40Z", + "updated_at": "2024-12-01T23:24:40Z" + }, + "meta": { + "locales": [ + "en", + "fr" + ] + } + }, + { + "id": "6179", + "type": "organization", + "attributes": { + "host": "110.lvh.me", + "secondary_hosts": [ + + ], + "name": { + "en": "Treutel, Cormier and Price", + "fr": "D'Amore-Graham" }, - "created_at": "2024-11-22T23:39:05Z", - "updated_at": "2024-11-22T23:39:05Z" + "created_at": "2024-12-01T23:24:40Z", + "updated_at": "2024-12-01T23:24:40Z" }, "meta": { "locales": [ @@ -3342,30 +4333,231 @@ "value": { "data": [ { - "id": "4350", + "id": "4363", "type": "organization", "attributes": { - "created_at": "2024-11-22T23:39:05Z", - "updated_at": "2024-11-22T23:39:05Z" + "host": "localhost", + "secondary_hosts": [ + "0.0.0.0", + "127.0.0.1" + ], + "name": { + "en": "Fahey-Keeling", + "bg": "", + "ar": "", + "ca": "Alemany-Guarch", + "cs": "Goyette and Sons", + "da": "", + "de": "Wollenberg, Meyer und Laws", + "el": "", + "eo": "", + "es": "Saiz e Hijos", + "es-MX": "", + "es-PY": "", + "et": "", + "eu": "Beer Group", + "fa": "", + "fi-pl": "", + "fi": "Roberts, Osinski and Runolfsson", + "fr": "Perret et Remy", + "fr-CA": "", + "ga": "", + "gl": "", + "hr": "", + "hu": "", + "id": "", + "is": "", + "it": "Longo, Costantin e Milani e figli", + "ja": "合名会社野村情報", + "ko": "", + "lb": "", + "lt": "", + "lv": "", + "mt": "", + "nl": "Iterson, Kampen and Milius", + "no": "", + "pl": "Rak-Książek", + "pt": "Batista, Xavier e Macedo", + "pt-BR": "", + "ro": "", + "ru": "", + "sk": "", + "sl": "", + "sr": "", + "sv": "", + "tr": "", + "uk": "", + "vi": "", + "zh-CN": "", + "zh-TW": "" + }, + "created_at": "2024-11-25T05:30:20Z", + "updated_at": "2024-11-25T05:30:24Z" }, "meta": { "locales": [ "en", - "fr" + "bg", + "ar", + "ca", + "cs", + "da", + "de", + "el", + "eo", + "es", + "es-MX", + "es-PY", + "et", + "eu", + "fa", + "fi-pl", + "fi", + "fr", + "fr-CA", + "ga", + "gl", + "hr", + "hu", + "id", + "is", + "it", + "ja", + "ko", + "lb", + "lt", + "lv", + "mt", + "nl", + "no", + "pl", + "pt", + "pt-BR", + "ro", + "ru", + "sk", + "sl", + "sr", + "sv", + "tr", + "uk", + "vi", + "zh-CN", + "zh-TW" ] } }, { - "id": "4351", + "id": "6180", "type": "organization", "attributes": { - "created_at": "2024-11-22T23:39:05Z", - "updated_at": "2024-11-22T23:39:05Z" + "host": "111.lvh.me", + "secondary_hosts": [ + + ], + "name": { + "en": "Gleichner Inc", + "bg": "Wiza, Parisian and Ortiz", + "ar": "Stamm-Kirlin", + "ca": "Feeney and Sons", + "cs": "Gutkowski-Reilly", + "da": "Bernhard, Schinner and Stiedemann", + "de": "Hegmann Group", + "el": "Nienow, Sanford and Glover", + "eo": "Mitchell Inc", + "es": "Gottlieb, Tromp and Grimes", + "es-MX": "Kuhn-Mayer", + "es-PY": "Hayes, Bauch and Thompson", + "et": "Braun, Pollich and Stokes", + "eu": "Kunze-Heathcote", + "fa": "Kertzmann, Barrows and Bergnaum", + "fi-pl": "Wintheiser, Little and Braun", + "fi": "Sanford-Rice", + "fr": "Runolfsdottir and Sons", + "fr-CA": "Gutmann, Lehner and Cole", + "ga": "Parker, Barton and Beatty", + "gl": "Abshire, Howe and Sauer", + "hr": "Graham, Heidenreich and Johns", + "hu": "Greenfelder-Howe", + "id": "Kuphal, Windler and Ritchie", + "is": "Bahringer-Prohaska", + "it": "Schumm-Kerluke", + "ja": "Crooks, DuBuque and O'Keefe", + "ko": "Jaskolski-Bartell", + "lb": "Nitzsche Inc", + "lt": "Lebsack-Goyette", + "lv": "Hamill LLC", + "mt": "Ratke-Howe", + "nl": "Williamson, Zboncak and Mosciski", + "no": "Block-Greenholt", + "pl": "Smitham, Blick and Cartwright", + "pt": "Haag, Simonis and MacGyver", + "pt-BR": "Russel-McLaughlin", + "ro": "Bayer, Mayer and DuBuque", + "ru": "Kuvalis-Yundt", + "sk": "Batz, Kris and Goodwin", + "sl": "Brakus-Torphy", + "sr": "Lemke Group", + "sv": "Kassulke-Feil", + "tr": "O'Reilly-Rath", + "uk": "Dooley-Nicolas", + "vi": "Lowe-Dare", + "zh-CN": "Veum-Mitchell", + "zh-TW": "Sanford Inc" + }, + "created_at": "2024-12-01T23:24:40Z", + "updated_at": "2024-12-01T23:24:40Z" }, "meta": { "locales": [ "en", - "fr" + "bg", + "ar", + "ca", + "cs", + "da", + "de", + "el", + "eo", + "es", + "es-MX", + "es-PY", + "et", + "eu", + "fa", + "fi-pl", + "fi", + "fr", + "fr-CA", + "ga", + "gl", + "hr", + "hu", + "id", + "is", + "it", + "ja", + "ko", + "lb", + "lt", + "lv", + "mt", + "nl", + "no", + "pl", + "pt", + "pt-BR", + "ro", + "ru", + "sk", + "sl", + "sr", + "sv", + "tr", + "uk", + "vi", + "zh-CN", + "zh-TW" ] } } @@ -3383,15 +4575,6 @@ "description": "Bad Request", "content": { "application/json": { - "examples": { - "bad_format": { - "value": { - "error_code": 400, - "message": "Bad request", - "detail": "Not allowed populate param: invalid_field" - } - } - }, "schema": { "$ref": "#/components/schemas/api_error" } @@ -3420,7 +4603,7 @@ } } }, - "/api/rest_full/v0.0/system/users": { + "/system/users": { "get": { "summary": "List available Users", "tags": [ @@ -3586,17 +4769,17 @@ "value": { "data": [ { - "id": "7148", + "id": "10002", "type": "user", "attributes": { - "name": "Charline Stanton", - "nickname": "kf9i8lk3_67", - "personal_url": "http://stamm.example/lorena", - "email": "user67@example.org", - "about": "{\"en\"=>\" Dignissimos quo dolore. 6185\", \"machine_translations\"=>{\"fr\"=>\" Voluptatem deleniti dolores. 6186\"}}", + "name": "Grisel Marvin", + "nickname": "g8tkeb3ac_66", + "personal_url": "http://rau.test/royal_kulas", + "email": "user66@example.org", + "about": "{\"en\"=>\" Aliquam quo qui. 149425\", \"bg\"=>\" Ea earum accusantium. 149426\", \"ar\"=>\" Aliquid cumque possimus. 149427\", \"ca\"=>\" Vero provident magni. 149428\", \"cs\"=>\" Quo voluptatem reprehenderit. 149429\", \"da\"=>\" Fugiat et est. 149430\", \"de\"=>\" Voluptatibus corrupti consequuntur. 149431\", \"el\"=>\" Laudantium pariatur sint. 149432\", \"eo\"=>\" Commodi quisquam adipisci. 149433\", \"es\"=>\" Est placeat blanditiis. 149434\", \"es-MX\"=>\" Veniam dicta voluptas. 149435\", \"es-PY\"=>\" Rerum ut inventore. 149436\", \"et\"=>\" Unde eius fugit. 149437\", \"eu\"=>\" Aliquam doloribus sapiente. 149438\", \"fa\"=>\" Accusantium ut ullam. 149439\", \"fi-pl\"=>\" Omnis et eum. 149440\", \"fi\"=>\" Cumque quo labore. 149441\", \"fr\"=>\" Aliquid est laboriosam. 149442\", \"fr-CA\"=>\" Quos minus et. 149443\", \"ga\"=>\" Veritatis consequatur necessitatibus. 149444\", \"gl\"=>\" Facere nam harum. 149445\", \"hr\"=>\" Iste necessitatibus exercitationem. 149446\", \"hu\"=>\" Ullam sit aut. 149447\", \"id\"=>\" Temporibus velit eius. 149448\", \"is\"=>\" Iure corporis voluptas. 149449\", \"it\"=>\" Explicabo nisi occaecati. 149450\", \"ja\"=>\" 明治施行へいがい。 149451\", \"ko\"=>\" 신체의 정하는 추정된다.. 149452\", \"lb\"=>\" Nihil sint ut. 149453\", \"lt\"=>\" Possimus voluptas id. 149454\", \"lv\"=>\" Voluptates voluptatibus esse. 149455\", \"mt\"=>\" Dolorem dolore dignissimos. 149456\", \"nl\"=>\" Quod voluptas aut. 149457\", \"no\"=>\" Fugiat et quae. 149458\", \"pl\"=>\" Qui ut rerum. 149459\", \"pt\"=>\" Perspiciatis temporibus soluta. 149460\", \"pt-BR\"=>\" In placeat ut. 149461\", \"ro\"=>\" Ex expedita quis. 149462\", \"ru\"=>\" Odio dolores vero. 149463\", \"sk\"=>\" Soluta necessitatibus voluptas. 149464\", \"sl\"=>\" Et ut aperiam. 149465\", \"sr\"=>\" Ut rerum assumenda. 149466\", \"sv\"=>\" Repellendus dolorem cum. 149467\", \"tr\"=>\" Inventore itaque optio. 149468\", \"uk\"=>\" Animi architecto rerum. 149469\", \"vi\"=>\" Gió thế cửa. 149470\", \"zh-CN\"=>\" Consequatur nulla sed. 149471\", \"machine_translations\"=>{\"zh-TW\"=>\" Mollitia assumenda voluptate. 149472\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:43Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3611,17 +4794,17 @@ } }, { - "id": "7149", + "id": "10003", "type": "user", "attributes": { - "name": "Tomasa Gerlach", - "nickname": "mlam8f2_68", - "personal_url": "http://schinner-fadel.example/tanya_swift", - "email": "user68@example.org", - "about": "{\"en\"=>\" Inventore sed alias. 6187\", \"machine_translations\"=>{\"fr\"=>\" Debitis commodi vel. 6188\"}}", + "name": "Danny OKon", + "nickname": "3_67", + "personal_url": "http://huels.example/collin", + "email": "user67@example.org", + "about": "{\"en\"=>\" Sunt unde ipsum. 149473\", \"bg\"=>\" Aliquam voluptatibus earum. 149474\", \"ar\"=>\" Fuga voluptatem repellendus. 149475\", \"ca\"=>\" Beatae quaerat illum. 149476\", \"cs\"=>\" Id aliquam magni. 149477\", \"da\"=>\" Et iure architecto. 149478\", \"de\"=>\" Molestias voluptatem aut. 149479\", \"el\"=>\" Est occaecati labore. 149480\", \"eo\"=>\" Impedit consequatur natus. 149481\", \"es\"=>\" Inventore quo quo. 149482\", \"es-MX\"=>\" Dolorem id labore. 149483\", \"es-PY\"=>\" Qui illo aspernatur. 149484\", \"et\"=>\" Ut voluptate perferendis. 149485\", \"eu\"=>\" Enim dolores culpa. 149486\", \"fa\"=>\" At tempora ut. 149487\", \"fi-pl\"=>\" Aut illo aliquid. 149488\", \"fi\"=>\" Voluptatem molestiae et. 149489\", \"fr\"=>\" Quis illum ad. 149490\", \"fr-CA\"=>\" Nihil accusantium voluptas. 149491\", \"ga\"=>\" Tempora unde quia. 149492\", \"gl\"=>\" Similique et tempore. 149493\", \"hr\"=>\" Vel consectetur quis. 149494\", \"hu\"=>\" In temporibus asperiores. 149495\", \"id\"=>\" Atque dolores asperiores. 149496\", \"is\"=>\" Quia odio quis. 149497\", \"it\"=>\" Animi accusantium omnis. 149498\", \"ja\"=>\" ひんきゃく失う安泰。 149499\", \"ko\"=>\" 통신·방송의 경우와 이상의. 149500\", \"lb\"=>\" Corrupti velit inventore. 149501\", \"lt\"=>\" Ipsa natus est. 149502\", \"lv\"=>\" Est amet occaecati. 149503\", \"mt\"=>\" Placeat eveniet qui. 149504\", \"nl\"=>\" Dolore harum eius. 149505\", \"no\"=>\" Officiis occaecati tempora. 149506\", \"pl\"=>\" Et vel nam. 149507\", \"pt\"=>\" Ea iure odio. 149508\", \"pt-BR\"=>\" Quisquam consequatur ut. 149509\", \"ro\"=>\" Quia placeat illo. 149510\", \"ru\"=>\" Aut provident porro. 149511\", \"sk\"=>\" Ipsam aliquam ex. 149512\", \"sl\"=>\" Eum qui ea. 149513\", \"sr\"=>\" Quas eos minus. 149514\", \"sv\"=>\" Enim voluptas nobis. 149515\", \"tr\"=>\" Id pariatur corporis. 149516\", \"uk\"=>\" Accusantium recusandae magni. 149517\", \"vi\"=>\" Nước thích yêu. 149518\", \"zh-CN\"=>\" Aut et amet. 149519\", \"machine_translations\"=>{\"zh-TW\"=>\" Aut in ut. 149520\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:44Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3636,17 +4819,17 @@ } }, { - "id": "7150", + "id": "10004", "type": "user", "attributes": { - "name": "Chris Kutch III", - "nickname": "qwsjx85qk6_69", - "personal_url": "http://lakin-littel.example/leo_mckenzie", - "email": "user69@example.org", - "about": "{\"en\"=>\" Est molestiae aut. 6189\", \"machine_translations\"=>{\"fr\"=>\" Aut eligendi ea. 6190\"}}", + "name": "Rep. Humberto Volkman", + "nickname": "eyg6c8_68", + "personal_url": "http://lehner.example/easter_klocko", + "email": "user68@example.org", + "about": "{\"en\"=>\" Vero deserunt sit. 149521\", \"bg\"=>\" Sit qui beatae. 149522\", \"ar\"=>\" Dolores qui veniam. 149523\", \"ca\"=>\" Molestiae ut et. 149524\", \"cs\"=>\" Dolorem ipsam ab. 149525\", \"da\"=>\" Sunt neque velit. 149526\", \"de\"=>\" Qui dolor repellendus. 149527\", \"el\"=>\" Magnam ex voluptates. 149528\", \"eo\"=>\" Commodi quia mollitia. 149529\", \"es\"=>\" Blanditiis possimus illum. 149530\", \"es-MX\"=>\" Quidem dolores vel. 149531\", \"es-PY\"=>\" Voluptatum blanditiis et. 149532\", \"et\"=>\" Nihil magnam architecto. 149533\", \"eu\"=>\" Assumenda et quia. 149534\", \"fa\"=>\" Quia id ea. 149535\", \"fi-pl\"=>\" Cumque ut aut. 149536\", \"fi\"=>\" Vel dolor atque. 149537\", \"fr\"=>\" Corporis est molestias. 149538\", \"fr-CA\"=>\" Quae sit officia. 149539\", \"ga\"=>\" Aut cumque nobis. 149540\", \"gl\"=>\" Repellat quidem ullam. 149541\", \"hr\"=>\" Repellat nulla omnis. 149542\", \"hu\"=>\" Quaerat nobis in. 149543\", \"id\"=>\" Minima quis necessitatibus. 149544\", \"is\"=>\" Animi suscipit pariatur. 149545\", \"it\"=>\" Cumque non impedit. 149546\", \"ja\"=>\" ひんかくいくちがい。 149547\", \"ko\"=>\" 체결·공포된 법률로써 법률로써. 149548\", \"lb\"=>\" Eum vel perferendis. 149549\", \"lt\"=>\" Molestiae quae sed. 149550\", \"lv\"=>\" Natus eum voluptas. 149551\", \"mt\"=>\" Est aut libero. 149552\", \"nl\"=>\" Ad voluptatem et. 149553\", \"no\"=>\" Nisi tempora iste. 149554\", \"pl\"=>\" Et vel dolorem. 149555\", \"pt\"=>\" Neque nobis pariatur. 149556\", \"pt-BR\"=>\" Maxime et non. 149557\", \"ro\"=>\" Quae tempora sunt. 149558\", \"ru\"=>\" Veritatis eum aut. 149559\", \"sk\"=>\" Qui adipisci sint. 149560\", \"sl\"=>\" Quisquam nulla fuga. 149561\", \"sr\"=>\" Quae saepe voluptatum. 149562\", \"sv\"=>\" Perferendis quia non. 149563\", \"tr\"=>\" Voluptatem molestias nihil. 149564\", \"uk\"=>\" Aut mollitia tempora. 149565\", \"vi\"=>\" Leo em trời. 149566\", \"zh-CN\"=>\" Tempore quaerat voluptas. 149567\", \"machine_translations\"=>{\"zh-TW\"=>\" Accusantium qui deleniti. 149568\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:44Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3661,17 +4844,17 @@ } }, { - "id": "7151", + "id": "10005", "type": "user", "attributes": { - "name": "Vennie Turner", - "nickname": "yww6fxq_70", - "personal_url": "http://ebert.test/carmelo_hartmann", - "email": "user70@example.org", - "about": "{\"en\"=>\" Saepe aut aut. 6191\", \"machine_translations\"=>{\"fr\"=>\" Quibusdam est officia. 6192\"}}", + "name": "Mrs. Graig Greenholt", + "nickname": "2eajtdld_69", + "personal_url": "http://ankunding-wuckert.example/loreen", + "email": "user69@example.org", + "about": "{\"en\"=>\" Voluptatibus error voluptatem. 149569\", \"bg\"=>\" Illo consequuntur et. 149570\", \"ar\"=>\" Dolores modi veniam. 149571\", \"ca\"=>\" Doloribus fuga officia. 149572\", \"cs\"=>\" Cupiditate at corrupti. 149573\", \"da\"=>\" Perferendis id qui. 149574\", \"de\"=>\" Alias non sint. 149575\", \"el\"=>\" Ut aliquam qui. 149576\", \"eo\"=>\" Corrupti veritatis enim. 149577\", \"es\"=>\" Officiis velit consequatur. 149578\", \"es-MX\"=>\" Reiciendis eveniet rem. 149579\", \"es-PY\"=>\" In sunt similique. 149580\", \"et\"=>\" Voluptate dolorem omnis. 149581\", \"eu\"=>\" Sunt sit possimus. 149582\", \"fa\"=>\" Aperiam voluptas rerum. 149583\", \"fi-pl\"=>\" Autem deleniti aut. 149584\", \"fi\"=>\" Quis nostrum illo. 149585\", \"fr\"=>\" Id consequuntur recusandae. 149586\", \"fr-CA\"=>\" Provident omnis deserunt. 149587\", \"ga\"=>\" Ut reprehenderit cumque. 149588\", \"gl\"=>\" Magnam harum sed. 149589\", \"hr\"=>\" Quaerat molestiae beatae. 149590\", \"hu\"=>\" Earum aliquam repellat. 149591\", \"id\"=>\" Cum quae sit. 149592\", \"is\"=>\" Repellat eum iure. 149593\", \"it\"=>\" Quis quo deleniti. 149594\", \"ja\"=>\" あしくび機嫌ごじゅう。 149595\", \"ko\"=>\" 국민은 모든 의하여. 149596\", \"lb\"=>\" Est et autem. 149597\", \"lt\"=>\" Totam maxime consequuntur. 149598\", \"lv\"=>\" Est quia consectetur. 149599\", \"mt\"=>\" Ut possimus dolore. 149600\", \"nl\"=>\" Vitae voluptatum pariatur. 149601\", \"no\"=>\" Est cumque odit. 149602\", \"pl\"=>\" Sit voluptas voluptatem. 149603\", \"pt\"=>\" Non eveniet tenetur. 149604\", \"pt-BR\"=>\" Aut deserunt quisquam. 149605\", \"ro\"=>\" Non incidunt ullam. 149606\", \"ru\"=>\" Nostrum explicabo voluptas. 149607\", \"sk\"=>\" Consectetur dicta et. 149608\", \"sl\"=>\" Dolorem neque similique. 149609\", \"sr\"=>\" Possimus ut dolorum. 149610\", \"sv\"=>\" Molestias dolorem voluptates. 149611\", \"tr\"=>\" Et rerum dignissimos. 149612\", \"uk\"=>\" Rerum esse odio. 149613\", \"vi\"=>\" Hương ác thôi. 149614\", \"zh-CN\"=>\" Sunt et assumenda. 149615\", \"machine_translations\"=>{\"zh-TW\"=>\" Consectetur qui distinctio. 149616\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:44Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3686,17 +4869,17 @@ } }, { - "id": "7152", + "id": "10006", "type": "user", "attributes": { - "name": "Ivory Weber CPA", - "nickname": "8x20_71", - "personal_url": "http://mcdermott.test/gisela", - "email": "user71@example.org", - "about": "{\"en\"=>\" Ex qui incidunt. 6193\", \"machine_translations\"=>{\"fr\"=>\" Neque est qui. 6194\"}}", + "name": "Bryan Ondricka", + "nickname": "kq_70", + "personal_url": "http://donnelly.example/kisha.shields", + "email": "user70@example.org", + "about": "{\"en\"=>\" Ipsam et voluptatem. 149617\", \"bg\"=>\" Alias autem veniam. 149618\", \"ar\"=>\" Nesciunt cupiditate perferendis. 149619\", \"ca\"=>\" Eum repellendus voluptas. 149620\", \"cs\"=>\" Corporis ut cumque. 149621\", \"da\"=>\" Cupiditate tempora quam. 149622\", \"de\"=>\" Laboriosam aut provident. 149623\", \"el\"=>\" Sint est vel. 149624\", \"eo\"=>\" Repudiandae exercitationem atque. 149625\", \"es\"=>\" Sit harum et. 149626\", \"es-MX\"=>\" Ut quaerat voluptas. 149627\", \"es-PY\"=>\" Et a sint. 149628\", \"et\"=>\" Enim dolorem et. 149629\", \"eu\"=>\" Dolor dolorem sit. 149630\", \"fa\"=>\" Maxime in enim. 149631\", \"fi-pl\"=>\" Ut labore at. 149632\", \"fi\"=>\" Reprehenderit alias tenetur. 149633\", \"fr\"=>\" Quia eaque distinctio. 149634\", \"fr-CA\"=>\" Quasi ut et. 149635\", \"ga\"=>\" In aliquam est. 149636\", \"gl\"=>\" Vero quia minus. 149637\", \"hr\"=>\" Eum aperiam laudantium. 149638\", \"hu\"=>\" Non delectus eaque. 149639\", \"id\"=>\" Ut repellat ratione. 149640\", \"is\"=>\" Soluta et aspernatur. 149641\", \"it\"=>\" Debitis quia culpa. 149642\", \"ja\"=>\" 電話超〜まもる。 149643\", \"ko\"=>\" 자유를 국내법과 구성하지. 149644\", \"lb\"=>\" Eum libero iusto. 149645\", \"lt\"=>\" Quae dolorem laudantium. 149646\", \"lv\"=>\" Neque cupiditate voluptas. 149647\", \"mt\"=>\" Doloribus veniam dicta. 149648\", \"nl\"=>\" Beatae autem sapiente. 149649\", \"no\"=>\" Sed impedit odit. 149650\", \"pl\"=>\" Distinctio ullam facere. 149651\", \"pt\"=>\" Eius nemo cum. 149652\", \"pt-BR\"=>\" Et quis nemo. 149653\", \"ro\"=>\" A quis corporis. 149654\", \"ru\"=>\" Quos beatae est. 149655\", \"sk\"=>\" Temporibus nisi error. 149656\", \"sl\"=>\" Hic dicta doloribus. 149657\", \"sr\"=>\" Excepturi non et. 149658\", \"sv\"=>\" Sit atque dolor. 149659\", \"tr\"=>\" Totam deserunt quia. 149660\", \"uk\"=>\" Labore nam recusandae. 149661\", \"vi\"=>\" Ghét biết trời. 149662\", \"zh-CN\"=>\" Quisquam nihil est. 149663\", \"machine_translations\"=>{\"zh-TW\"=>\" Aut qui eaque. 149664\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:44Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3711,17 +4894,17 @@ } }, { - "id": "7153", + "id": "10007", "type": "user", "attributes": { - "name": "Lael Predovic", - "nickname": "sghcgre_72", - "personal_url": "http://schultz.test/evette_bernier", - "email": "user72@example.org", - "about": "{\"en\"=>\" Illo esse in. 6195\", \"machine_translations\"=>{\"fr\"=>\" Quas amet libero. 6196\"}}", + "name": "Soo Anderson", + "nickname": "xj6y0mz4zf_71", + "personal_url": "http://wintheiser-weimann.example/lamar", + "email": "user71@example.org", + "about": "{\"en\"=>\" Aut nisi corrupti. 149665\", \"bg\"=>\" Voluptatem quibusdam ab. 149666\", \"ar\"=>\" Saepe vel et. 149667\", \"ca\"=>\" Itaque consequatur quas. 149668\", \"cs\"=>\" Nihil neque vel. 149669\", \"da\"=>\" Veritatis nobis cumque. 149670\", \"de\"=>\" Minima ex corrupti. 149671\", \"el\"=>\" Ducimus sunt nam. 149672\", \"eo\"=>\" Quia minus cum. 149673\", \"es\"=>\" Assumenda architecto vel. 149674\", \"es-MX\"=>\" Facere sint natus. 149675\", \"es-PY\"=>\" Excepturi adipisci tempora. 149676\", \"et\"=>\" Nihil nam autem. 149677\", \"eu\"=>\" Vitae dolores aliquid. 149678\", \"fa\"=>\" Et consequuntur excepturi. 149679\", \"fi-pl\"=>\" Quia quas deleniti. 149680\", \"fi\"=>\" Laboriosam maxime sit. 149681\", \"fr\"=>\" Recusandae officia magnam. 149682\", \"fr-CA\"=>\" Magni numquam sunt. 149683\", \"ga\"=>\" Est rerum et. 149684\", \"gl\"=>\" Quo et neque. 149685\", \"hr\"=>\" Totam eum et. 149686\", \"hu\"=>\" Saepe nulla delectus. 149687\", \"id\"=>\" Nostrum sint asperiores. 149688\", \"is\"=>\" Quia laborum quis. 149689\", \"it\"=>\" Accusamus aut possimus. 149690\", \"ja\"=>\" けいじばん全日本果てる。 149691\", \"ko\"=>\" 효력을 아니한다. 평생교육을. 149692\", \"lb\"=>\" Nesciunt dolor et. 149693\", \"lt\"=>\" Nulla quia assumenda. 149694\", \"lv\"=>\" Molestias non iure. 149695\", \"mt\"=>\" Deleniti labore non. 149696\", \"nl\"=>\" Voluptatibus perferendis ut. 149697\", \"no\"=>\" Ut ratione officiis. 149698\", \"pl\"=>\" Laboriosam expedita fugiat. 149699\", \"pt\"=>\" Dicta distinctio dolorem. 149700\", \"pt-BR\"=>\" Voluptatem iste repellendus. 149701\", \"ro\"=>\" Quos aut accusantium. 149702\", \"ru\"=>\" Perspiciatis deserunt neque. 149703\", \"sk\"=>\" Deleniti facilis earum. 149704\", \"sl\"=>\" Consequuntur a quis. 149705\", \"sr\"=>\" Corrupti maxime quos. 149706\", \"sv\"=>\" Dolores esse maxime. 149707\", \"tr\"=>\" Et aut minus. 149708\", \"uk\"=>\" Numquam corporis ut. 149709\", \"vi\"=>\" Trời gió chỉ. 149710\", \"zh-CN\"=>\" Fuga quo totam. 149711\", \"machine_translations\"=>{\"zh-TW\"=>\" Mollitia eos voluptate. 149712\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:44Z", + "updated_at": "2024-12-01T23:24:44Z" }, "relationships": { "roles": { @@ -3742,17 +4925,17 @@ "value": { "data": [ { - "id": "7154", + "id": "10008", "type": "user", "attributes": { - "name": "Greg Deckow", - "nickname": "nbzu_73", - "personal_url": "http://marks-boyle.test/terra_wolf", - "email": "user73@example.org", - "about": "{\"en\"=>\" Libero officia unde. 6205\", \"machine_translations\"=>{\"fr\"=>\" Eligendi molestias est. 6206\"}}", + "name": "Berry Mosciski", + "nickname": "vvywjs1oru_72", + "personal_url": "http://gutkowski.example/garfield", + "email": "user72@example.org", + "about": "{\"en\"=>\" Consequatur est voluptatibus. 149905\", \"bg\"=>\" Neque et ullam. 149906\", \"ar\"=>\" Consequatur voluptas in. 149907\", \"ca\"=>\" Velit rerum rerum. 149908\", \"cs\"=>\" Qui voluptatem exercitationem. 149909\", \"da\"=>\" Magni corporis iste. 149910\", \"de\"=>\" Sit et sapiente. 149911\", \"el\"=>\" Fugiat consequatur minima. 149912\", \"eo\"=>\" Amet neque provident. 149913\", \"es\"=>\" Est maxime ullam. 149914\", \"es-MX\"=>\" Quia quod a. 149915\", \"es-PY\"=>\" Dolorum et velit. 149916\", \"et\"=>\" Numquam iste omnis. 149917\", \"eu\"=>\" Eveniet exercitationem aspernatur. 149918\", \"fa\"=>\" Ratione et illum. 149919\", \"fi-pl\"=>\" Molestiae qui ea. 149920\", \"fi\"=>\" Quam at maiores. 149921\", \"fr\"=>\" Iusto sapiente labore. 149922\", \"fr-CA\"=>\" Omnis et voluptatem. 149923\", \"ga\"=>\" Qui harum et. 149924\", \"gl\"=>\" Sequi voluptates et. 149925\", \"hr\"=>\" Voluptatem quo accusantium. 149926\", \"hu\"=>\" Cumque aliquid distinctio. 149927\", \"id\"=>\" Earum consectetur velit. 149928\", \"is\"=>\" Et maxime esse. 149929\", \"it\"=>\" Vel ut itaque. 149930\", \"ja\"=>\" 地面軒検査。 149931\", \"ko\"=>\" 소추되지 도피 아니한다.. 149932\", \"lb\"=>\" Consectetur dolorem eum. 149933\", \"lt\"=>\" Quaerat neque repellat. 149934\", \"lv\"=>\" Voluptatem dignissimos quia. 149935\", \"mt\"=>\" Id optio est. 149936\", \"nl\"=>\" Ut vel eligendi. 149937\", \"no\"=>\" Alias omnis aperiam. 149938\", \"pl\"=>\" Voluptatem dolores rerum. 149939\", \"pt\"=>\" Dignissimos saepe voluptate. 149940\", \"pt-BR\"=>\" Delectus sit doloremque. 149941\", \"ro\"=>\" Rerum excepturi facere. 149942\", \"ru\"=>\" Debitis exercitationem sunt. 149943\", \"sk\"=>\" Reiciendis natus qui. 149944\", \"sl\"=>\" Itaque rerum autem. 149945\", \"sr\"=>\" Eius sed est. 149946\", \"sv\"=>\" Fuga dolorem inventore. 149947\", \"tr\"=>\" Enim autem earum. 149948\", \"uk\"=>\" Consequatur maxime officiis. 149949\", \"vi\"=>\" Núi ờ hai. 149950\", \"zh-CN\"=>\" Facere nobis porro. 149951\", \"machine_translations\"=>{\"zh-TW\"=>\" Aut quae qui. 149952\"}}", "locale": "fr", - "created_at": "2024-11-22T23:39:07Z", - "updated_at": "2024-11-22T23:39:07Z" + "created_at": "2024-12-01T23:24:45Z", + "updated_at": "2024-12-01T23:24:45Z" }, "relationships": { "roles": { @@ -3773,17 +4956,17 @@ "value": { "data": [ { - "id": "7155", + "id": "10009", "type": "user", "attributes": { - "name": "Josiah Mante", + "name": "Sen. Dennis Gorczany", "nickname": "specific-data", - "personal_url": "http://jones-rutherford.test/alane_douglas", - "email": "user74@example.org", - "about": "{\"en\"=>\" Non est modi. 6215\", \"machine_translations\"=>{\"fr\"=>\" Expedita quia voluptatibus. 6216\"}}", + "personal_url": "http://parisian.example/lurlene", + "email": "user73@example.org", + "about": "{\"en\"=>\" Repudiandae voluptatem et. 150145\", \"bg\"=>\" Quas inventore vero. 150146\", \"ar\"=>\" Quos delectus molestiae. 150147\", \"ca\"=>\" Quas ea aut. 150148\", \"cs\"=>\" Non fuga dolores. 150149\", \"da\"=>\" Harum veniam et. 150150\", \"de\"=>\" Sunt neque voluptatum. 150151\", \"el\"=>\" Possimus ut odit. 150152\", \"eo\"=>\" Libero qui id. 150153\", \"es\"=>\" Ab et eum. 150154\", \"es-MX\"=>\" Quibusdam odio voluptas. 150155\", \"es-PY\"=>\" Eum adipisci quam. 150156\", \"et\"=>\" Quia veniam placeat. 150157\", \"eu\"=>\" Laboriosam quas ipsum. 150158\", \"fa\"=>\" Iure nobis eos. 150159\", \"fi-pl\"=>\" Saepe et qui. 150160\", \"fi\"=>\" In vel omnis. 150161\", \"fr\"=>\" Velit voluptates commodi. 150162\", \"fr-CA\"=>\" Et sit ut. 150163\", \"ga\"=>\" Eius vero odio. 150164\", \"gl\"=>\" Quia soluta eos. 150165\", \"hr\"=>\" Cupiditate inventore enim. 150166\", \"hu\"=>\" Aut sunt eos. 150167\", \"id\"=>\" Quo qui ab. 150168\", \"is\"=>\" Soluta esse deserunt. 150169\", \"it\"=>\" Inventore eos accusamus. 150170\", \"ja\"=>\" きもちむぜいちらかす。 150171\", \"ko\"=>\" 체결·공포된 침해받지 일반적으로. 150172\", \"lb\"=>\" Asperiores et quidem. 150173\", \"lt\"=>\" Consectetur quae qui. 150174\", \"lv\"=>\" Dolores aut veniam. 150175\", \"mt\"=>\" Iste saepe rerum. 150176\", \"nl\"=>\" Tempore enim ut. 150177\", \"no\"=>\" Autem eos ratione. 150178\", \"pl\"=>\" Ad eius quod. 150179\", \"pt\"=>\" Enim voluptas et. 150180\", \"pt-BR\"=>\" Saepe eum est. 150181\", \"ro\"=>\" Ipsa et fugit. 150182\", \"ru\"=>\" Ipsum eveniet suscipit. 150183\", \"sk\"=>\" Consequuntur itaque accusamus. 150184\", \"sl\"=>\" Aut magni sit. 150185\", \"sr\"=>\" Blanditiis esse sed. 150186\", \"sv\"=>\" Labore ducimus dolorem. 150187\", \"tr\"=>\" Vel nostrum corporis. 150188\", \"uk\"=>\" Iste praesentium ut. 150189\", \"vi\"=>\" Hết tàu biển. 150190\", \"zh-CN\"=>\" Dolore aliquid eos. 150191\", \"machine_translations\"=>{\"zh-TW\"=>\" Quidem reprehenderit voluptas. 150192\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:08Z", - "updated_at": "2024-11-22T23:39:08Z" + "created_at": "2024-12-01T23:24:45Z", + "updated_at": "2024-12-01T23:24:45Z" }, "relationships": { "roles": { @@ -3805,17 +4988,17 @@ "value": { "data": [ { - "id": "7161", + "id": "10015", "type": "user", "attributes": { - "name": "Dana Vandervort", + "name": "Jerrod Gusikowski", "nickname": "blue-panda-218", - "personal_url": "http://schowalter.test/valentine", - "email": "user80@example.org", - "about": "{\"en\"=>\" Repellat sit cum. 6235\", \"machine_translations\"=>{\"fr\"=>\" Aut ad quam. 6236\"}}", + "personal_url": "http://kunde.example/tatum", + "email": "user79@example.org", + "about": "{\"en\"=>\" Vero quam expedita. 150625\", \"bg\"=>\" Deleniti voluptas explicabo. 150626\", \"ar\"=>\" Et tempora temporibus. 150627\", \"ca\"=>\" Omnis qui ducimus. 150628\", \"cs\"=>\" Delectus sint reiciendis. 150629\", \"da\"=>\" Sunt eum ut. 150630\", \"de\"=>\" Natus labore ex. 150631\", \"el\"=>\" Consequatur vel et. 150632\", \"eo\"=>\" Voluptatem non aperiam. 150633\", \"es\"=>\" Aliquam voluptatem earum. 150634\", \"es-MX\"=>\" Saepe ut vitae. 150635\", \"es-PY\"=>\" Est et quibusdam. 150636\", \"et\"=>\" Fuga quia eveniet. 150637\", \"eu\"=>\" Blanditiis non repellat. 150638\", \"fa\"=>\" Voluptates natus non. 150639\", \"fi-pl\"=>\" Tempora sit omnis. 150640\", \"fi\"=>\" Est expedita quo. 150641\", \"fr\"=>\" Id mollitia minus. 150642\", \"fr-CA\"=>\" Sed officiis qui. 150643\", \"ga\"=>\" Eaque non in. 150644\", \"gl\"=>\" Quis natus explicabo. 150645\", \"hr\"=>\" Repellendus eius occaecati. 150646\", \"hu\"=>\" Autem qui et. 150647\", \"id\"=>\" Aliquid in libero. 150648\", \"is\"=>\" At quaerat enim. 150649\", \"it\"=>\" Voluptatem in commodi. 150650\", \"ja\"=>\" 難しい誤用面積。 150651\", \"ko\"=>\" 국가는 비밀과 위하여. 150652\", \"lb\"=>\" Quia at qui. 150653\", \"lt\"=>\" Dolor asperiores tempore. 150654\", \"lv\"=>\" Soluta ullam molestiae. 150655\", \"mt\"=>\" Molestiae omnis odio. 150656\", \"nl\"=>\" Architecto repudiandae eaque. 150657\", \"no\"=>\" Fuga ut vel. 150658\", \"pl\"=>\" Rerum molestiae architecto. 150659\", \"pt\"=>\" Corporis pariatur accusamus. 150660\", \"pt-BR\"=>\" Velit eos eos. 150661\", \"ro\"=>\" Et labore in. 150662\", \"ru\"=>\" Aspernatur repellat consequatur. 150663\", \"sk\"=>\" Et consequatur accusamus. 150664\", \"sl\"=>\" Est consequatur dolor. 150665\", \"sr\"=>\" Quod sed rem. 150666\", \"sv\"=>\" Porro eos vitae. 150667\", \"tr\"=>\" Rerum voluptas fugit. 150668\", \"uk\"=>\" Harum quidem et. 150669\", \"vi\"=>\" Khoan núi đánh. 150670\", \"zh-CN\"=>\" Ut quo impedit. 150671\", \"machine_translations\"=>{\"zh-TW\"=>\" Sit id quo. 150672\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:08Z", - "updated_at": "2024-11-22T23:39:08Z" + "created_at": "2024-12-01T23:24:46Z", + "updated_at": "2024-12-01T23:24:46Z" }, "relationships": { "roles": { @@ -3836,17 +5019,17 @@ "value": { "data": [ { - "id": "7168", + "id": "10021", "type": "user", "attributes": { - "name": "Eldon Howe", - "nickname": "lngb0y_85", - "personal_url": "http://smith.example/anderson_lebsack", - "email": "user87@example.org", - "about": "{\"en\"=>\" Assumenda aut iste. 6257\", \"machine_translations\"=>{\"fr\"=>\" Molestias rerum ut. 6258\"}}", + "name": "Mrs. Maxie Howell", + "nickname": "gxzk6gwr8_83", + "personal_url": "http://quitzon.example/mathilde.erdman", + "email": "user85@example.org", + "about": "{\"en\"=>\" Fuga laudantium in. 151105\", \"bg\"=>\" Repellendus quia tempore. 151106\", \"ar\"=>\" Maxime incidunt aut. 151107\", \"ca\"=>\" Saepe et ut. 151108\", \"cs\"=>\" Consectetur ut a. 151109\", \"da\"=>\" Qui ipsam eos. 151110\", \"de\"=>\" Atque nostrum dignissimos. 151111\", \"el\"=>\" Nemo et et. 151112\", \"eo\"=>\" Alias ex facere. 151113\", \"es\"=>\" Magnam ipsam dolorum. 151114\", \"es-MX\"=>\" Reiciendis doloremque quis. 151115\", \"es-PY\"=>\" Impedit ullam dolore. 151116\", \"et\"=>\" Minus itaque quae. 151117\", \"eu\"=>\" Sed tenetur exercitationem. 151118\", \"fa\"=>\" Omnis eum eos. 151119\", \"fi-pl\"=>\" Fuga in architecto. 151120\", \"fi\"=>\" Ea dolorem non. 151121\", \"fr\"=>\" Deserunt dolore dolorem. 151122\", \"fr-CA\"=>\" Libero distinctio perspiciatis. 151123\", \"ga\"=>\" Incidunt ea voluptates. 151124\", \"gl\"=>\" Fugiat doloremque veritatis. 151125\", \"hr\"=>\" Aut molestias totam. 151126\", \"hu\"=>\" Vero perspiciatis aut. 151127\", \"id\"=>\" Dolorem aut eos. 151128\", \"is\"=>\" Voluptatum enim rerum. 151129\", \"it\"=>\" Dolor illum fugiat. 151130\", \"ja\"=>\" ねんじゅうふくへいはんだんする。 151131\", \"ko\"=>\" 노력하여야 다만, 법률로써. 151132\", \"lb\"=>\" Molestiae libero non. 151133\", \"lt\"=>\" Incidunt voluptas soluta. 151134\", \"lv\"=>\" Quo delectus voluptatem. 151135\", \"mt\"=>\" Maxime qui voluptatem. 151136\", \"nl\"=>\" Quam magni laudantium. 151137\", \"no\"=>\" Hic autem architecto. 151138\", \"pl\"=>\" Earum ratione corporis. 151139\", \"pt\"=>\" Maiores iste commodi. 151140\", \"pt-BR\"=>\" Repudiandae animi ducimus. 151141\", \"ro\"=>\" Est aperiam recusandae. 151142\", \"ru\"=>\" Sapiente enim harum. 151143\", \"sk\"=>\" Distinctio velit sed. 151144\", \"sl\"=>\" Est aut aut. 151145\", \"sr\"=>\" Ipsa et quos. 151146\", \"sv\"=>\" Aspernatur sit vel. 151147\", \"tr\"=>\" Autem recusandae in. 151148\", \"uk\"=>\" Rerum illum distinctio. 151149\", \"vi\"=>\" Yêu bốn đồng. 151150\", \"zh-CN\"=>\" Sit nihil sit. 151151\", \"machine_translations\"=>{\"zh-TW\"=>\" Quibusdam placeat iure. 151152\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:08Z", - "updated_at": "2024-11-22T23:39:08Z" + "created_at": "2024-12-01T23:24:47Z", + "updated_at": "2024-12-01T23:24:47Z" }, "relationships": { "roles": { @@ -3861,17 +5044,17 @@ } }, { - "id": "7169", + "id": "10022", "type": "user", "attributes": { - "name": "Myrle Deckow DDS", - "nickname": "bdjn7j_86", - "personal_url": "http://wintheiser-rolfson.example/jude_mueller", - "email": "user88@example.org", - "about": "{\"en\"=>\" Dicta eos placeat. 6259\", \"machine_translations\"=>{\"fr\"=>\" Veniam quia quis. 6260\"}}", + "name": "Peter Gleason", + "nickname": "jmsi76sej_84", + "personal_url": "http://stoltenberg.example/ethan_mosciski", + "email": "user86@example.org", + "about": "{\"en\"=>\" Nulla rem reprehenderit. 151153\", \"bg\"=>\" Est vel occaecati. 151154\", \"ar\"=>\" Ut dolorem nemo. 151155\", \"ca\"=>\" Fuga consequuntur nisi. 151156\", \"cs\"=>\" Quos omnis in. 151157\", \"da\"=>\" Nihil quibusdam aut. 151158\", \"de\"=>\" Repellendus molestiae doloremque. 151159\", \"el\"=>\" Sit amet assumenda. 151160\", \"eo\"=>\" Odit est perferendis. 151161\", \"es\"=>\" Vero facere rerum. 151162\", \"es-MX\"=>\" Quo sunt qui. 151163\", \"es-PY\"=>\" Deserunt hic sapiente. 151164\", \"et\"=>\" Soluta iusto maxime. 151165\", \"eu\"=>\" Consequuntur vel laborum. 151166\", \"fa\"=>\" Tempore beatae qui. 151167\", \"fi-pl\"=>\" Qui et aperiam. 151168\", \"fi\"=>\" Tempora et nulla. 151169\", \"fr\"=>\" Non consectetur totam. 151170\", \"fr-CA\"=>\" Veniam quo consectetur. 151171\", \"ga\"=>\" Deserunt quaerat nihil. 151172\", \"gl\"=>\" Aut cupiditate quia. 151173\", \"hr\"=>\" Dignissimos porro exercitationem. 151174\", \"hu\"=>\" Consectetur dolore voluptas. 151175\", \"id\"=>\" Accusamus delectus quasi. 151176\", \"is\"=>\" Voluptas mollitia explicabo. 151177\", \"it\"=>\" Molestiae consequatur rerum. 151178\", \"ja\"=>\" しばふ脱税済ます。 151179\", \"ko\"=>\" 3년 또는 청구할. 151180\", \"lb\"=>\" Aliquid ad alias. 151181\", \"lt\"=>\" Blanditiis ut et. 151182\", \"lv\"=>\" Ut consequatur nesciunt. 151183\", \"mt\"=>\" Sed consectetur eum. 151184\", \"nl\"=>\" Eos delectus earum. 151185\", \"no\"=>\" Voluptas ipsam tempora. 151186\", \"pl\"=>\" Est voluptatum id. 151187\", \"pt\"=>\" Quia porro non. 151188\", \"pt-BR\"=>\" Enim sit autem. 151189\", \"ro\"=>\" Quia odio porro. 151190\", \"ru\"=>\" Eius esse consequuntur. 151191\", \"sk\"=>\" Ipsa consectetur culpa. 151192\", \"sl\"=>\" Ad mollitia porro. 151193\", \"sr\"=>\" Dolores a iste. 151194\", \"sv\"=>\" Assumenda aspernatur sequi. 151195\", \"tr\"=>\" Est occaecati pariatur. 151196\", \"uk\"=>\" Ut perferendis impedit. 151197\", \"vi\"=>\" Năm em yêu. 151198\", \"zh-CN\"=>\" Vitae tempore minus. 151199\", \"machine_translations\"=>{\"zh-TW\"=>\" Excepturi quia soluta. 151200\"}}", "locale": "en", - "created_at": "2024-11-22T23:39:08Z", - "updated_at": "2024-11-22T23:39:08Z" + "created_at": "2024-12-01T23:24:47Z", + "updated_at": "2024-12-01T23:24:47Z" }, "relationships": { "roles": { diff --git a/yarn.lock b/yarn.lock index 0b4e584..0eea283 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,2039 +1,1507 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 8 - cacheKey: 10c0 - -"@babel/code-frame@npm:^7.0.0": - version: 7.26.2 - resolution: "@babel/code-frame@npm:7.26.2" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.25.9" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.0.0" - checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.25.9": - version: 7.25.9 - resolution: "@babel/helper-validator-identifier@npm:7.25.9" - checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.21.0": - version: 7.26.0 - resolution: "@babel/runtime@npm:7.26.0" - dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/12c01357e0345f89f4f7e8c0e81921f2a3e3e101f06e8eaa18a382b517376520cd2fa8c237726eb094dab25532855df28a7baaf1c26342b52782f6936b07c287 - languageName: node - linkType: hard - -"@lukeed/csprng@npm:^1.0.0": - version: 1.1.0 - resolution: "@lukeed/csprng@npm:1.1.0" - checksum: 10c0/5d6dcf478af732972083ab2889c294b57f1028fa13c2c240d7a4aaa079c2c75df7ef0dcbdda5419147fc6704b4adf96b2de92f1a9a72ac21c6350c4014fffe6c - languageName: node - linkType: hard - -"@nestjs/axios@npm:3.1.1": - version: 3.1.1 - resolution: "@nestjs/axios@npm:3.1.1" - peerDependencies: - "@nestjs/common": ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 - axios: ^1.3.1 - rxjs: ^6.0.0 || ^7.0.0 - checksum: 10c0/0c9244d32574610f6c63caa7a563c66640e83cd8a7373ca6d7173a37af11c02ee386af7ad7e808cf9a73b69df70105be930b5baa82558213227d0ba50d36bf10 - languageName: node - linkType: hard - -"@nestjs/common@npm:10.4.6": - version: 10.4.6 - resolution: "@nestjs/common@npm:10.4.6" - dependencies: - iterare: "npm:1.2.1" - tslib: "npm:2.7.0" - uid: "npm:2.0.2" - peerDependencies: - class-transformer: "*" - class-validator: "*" - reflect-metadata: ^0.1.12 || ^0.2.0 - rxjs: ^7.1.0 - peerDependenciesMeta: - class-transformer: - optional: true - class-validator: - optional: true - checksum: 10c0/8bfa30ffbca605ae5b5c1b79d0fc6f9edc3b4538880e083dcde7a6e6ae5721d4bd64212a768eb9d921be878da7098e2ca2da390eedb97e4b3a724dfb6039d9e7 - languageName: node - linkType: hard - -"@nestjs/core@npm:10.4.6": - version: 10.4.6 - resolution: "@nestjs/core@npm:10.4.6" - dependencies: - "@nuxtjs/opencollective": "npm:0.3.2" - fast-safe-stringify: "npm:2.1.1" - iterare: "npm:1.2.1" - path-to-regexp: "npm:3.3.0" - tslib: "npm:2.7.0" - uid: "npm:2.0.2" - peerDependencies: - "@nestjs/common": ^10.0.0 - "@nestjs/microservices": ^10.0.0 - "@nestjs/platform-express": ^10.0.0 - "@nestjs/websockets": ^10.0.0 - reflect-metadata: ^0.1.12 || ^0.2.0 - rxjs: ^7.1.0 - peerDependenciesMeta: - "@nestjs/microservices": - optional: true - "@nestjs/platform-express": - optional: true - "@nestjs/websockets": - optional: true - checksum: 10c0/7d43f0863799cbda52e616be9102af67363ceb3f56c69678be77630298ae09e1e0f92cef95d785f185262c2e00f80fd456f8df1328949417068b437a8fee04c1 - languageName: node - linkType: hard - -"@nuxtjs/opencollective@npm:0.3.2": - version: 0.3.2 - resolution: "@nuxtjs/opencollective@npm:0.3.2" - dependencies: - chalk: "npm:^4.1.0" - consola: "npm:^2.15.0" - node-fetch: "npm:^2.6.1" - bin: - opencollective: bin/opencollective.js - checksum: 10c0/540268687af3289ff107585484d42201b404cdbb98b3a512487c12a6b180a8f0e1df0d701df47d3d9e0d5c0f6eb3252d80535562aedca9edf52cf7fd17ae4601 - languageName: node - linkType: hard - -"@openapitools/openapi-generator-cli@npm:^2.15.3": - version: 2.15.3 - resolution: "@openapitools/openapi-generator-cli@npm:2.15.3" - dependencies: - "@nestjs/axios": "npm:3.1.1" - "@nestjs/common": "npm:10.4.6" - "@nestjs/core": "npm:10.4.6" - "@nuxtjs/opencollective": "npm:0.3.2" - axios: "npm:1.7.7" - chalk: "npm:4.1.2" - commander: "npm:8.3.0" - compare-versions: "npm:4.1.4" - concurrently: "npm:6.5.1" - console.table: "npm:0.10.0" - fs-extra: "npm:10.1.0" - glob: "npm:9.3.5" - inquirer: "npm:8.2.6" - lodash: "npm:4.17.21" - proxy-agent: "npm:6.4.0" - reflect-metadata: "npm:0.1.13" - rxjs: "npm:7.8.1" - tslib: "npm:2.8.1" - bin: - openapi-generator-cli: main.js - checksum: 10c0/cba0c1ec26db6eec59693b5b978240110a5a0f708b3624f44e84a32e6992396063d01af95458cb0fd1d36189eaaf908a75cc51d7f3958be87eed0d32ce35e2f3 - languageName: node - linkType: hard - -"@tootallnate/quickjs-emscripten@npm:^0.23.0": - version: 0.23.0 - resolution: "@tootallnate/quickjs-emscripten@npm:0.23.0" - checksum: 10c0/2a939b781826fb5fd3edd0f2ec3b321d259d760464cf20611c9877205aaca3ccc0b7304dea68416baa0d568e82cd86b17d29548d1e5139fa3155a4a86a2b4b49 - languageName: node - linkType: hard - -"@types/normalize-package-data@npm:^2.4.0": - version: 2.4.4 - resolution: "@types/normalize-package-data@npm:2.4.4" - checksum: 10c0/aef7bb9b015883d6f4119c423dd28c4bdc17b0e8a0ccf112c78b4fe0e91fbc4af7c6204b04bba0e199a57d2f3fbbd5b4a14bf8739bf9d2a39b2a0aad545e0f86 - languageName: node - linkType: hard - -"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1": - version: 7.1.1 - resolution: "agent-base@npm:7.1.1" - dependencies: - debug: "npm:^4.3.4" - checksum: 10c0/e59ce7bed9c63bf071a30cc471f2933862044c97fd9958967bfe22521d7a0f601ce4ed5a8c011799d0c726ca70312142ae193bbebb60f576b52be19d4a363b50 - languageName: node - linkType: hard - -"ansi-escapes@npm:^2.0.0": - version: 2.0.0 - resolution: "ansi-escapes@npm:2.0.0" - checksum: 10c0/e7ecfceb220167e7745ccd0f37a74be4ff5de2b03ab7832a9a2b0bb6bfe8b4c63f6fe18672f122c9f3c1a928ac44c9d1fa8c2d6665dbe56b67682607203d2be8 - languageName: node - linkType: hard - -"ansi-escapes@npm:^3.0.0": - version: 3.2.0 - resolution: "ansi-escapes@npm:3.2.0" - checksum: 10c0/084e1ce38139ad2406f18a8e7efe2b850ddd06ce3c00f633392d1ce67756dab44fe290e573d09ef3c9a0cb13c12881e0e35a8f77a017d39a0a4ab85ae2fae04f - languageName: node - linkType: hard - -"ansi-escapes@npm:^4.2.1": - version: 4.3.2 - resolution: "ansi-escapes@npm:4.3.2" - dependencies: - type-fest: "npm:^0.21.3" - checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 - languageName: node - linkType: hard - -"ansi-regex@npm:^3.0.0": - version: 3.0.1 - resolution: "ansi-regex@npm:3.0.1" - checksum: 10c0/d108a7498b8568caf4a46eea4f1784ab4e0dfb2e3f3938c697dee21443d622d765c958f2b7e2b9f6b9e55e2e2af0584eaa9915d51782b89a841c28e744e7a167 - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 - languageName: node - linkType: hard - -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: "npm:^1.9.0" - checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: "npm:^2.0.1" - checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 - languageName: node - linkType: hard - -"ast-types@npm:^0.13.4": - version: 0.13.4 - resolution: "ast-types@npm:0.13.4" - dependencies: - tslib: "npm:^2.0.1" - checksum: 10c0/3a1a409764faa1471601a0ad01b3aa699292991aa9c8a30c7717002cabdf5d98008e7b53ae61f6e058f757fc6ba965e147967a93c13e62692c907d79cfb245f8 - languageName: node - linkType: hard - -"asynckit@npm:^0.4.0": - version: 0.4.0 - resolution: "asynckit@npm:0.4.0" - checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d - languageName: node - linkType: hard - -"axios@npm:1.7.7": - version: 1.7.7 - resolution: "axios@npm:1.7.7" - dependencies: - follow-redirects: "npm:^1.15.6" - form-data: "npm:^4.0.0" - proxy-from-env: "npm:^1.1.0" - checksum: 10c0/4499efc89e86b0b49ffddc018798de05fab26e3bf57913818266be73279a6418c3ce8f9e934c7d2d707ab8c095e837fc6c90608fb7715b94d357720b5f568af7 - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee - languageName: node - linkType: hard - -"base64-js@npm:^1.3.1": - version: 1.5.1 - resolution: "base64-js@npm:1.5.1" - checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf - languageName: node - linkType: hard - -"basic-ftp@npm:^5.0.2": - version: 5.0.5 - resolution: "basic-ftp@npm:5.0.5" - checksum: 10c0/be983a3997749856da87b839ffce6b8ed6c7dbf91ea991d5c980d8add275f9f2926c19f80217ac3e7f353815be879371d636407ca72b038cea8cab30e53928a6 - languageName: node - linkType: hard - -"bl@npm:^4.1.0": - version: 4.1.0 - resolution: "bl@npm:4.1.0" - dependencies: - buffer: "npm:^5.5.0" - inherits: "npm:^2.0.4" - readable-stream: "npm:^3.4.0" - checksum: 10c0/02847e1d2cb089c9dc6958add42e3cdeaf07d13f575973963335ac0fdece563a50ac770ac4c8fa06492d2dd276f6cc3b7f08c7cd9c7a7ad0f8d388b2a28def5f - languageName: node - linkType: hard - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f - languageName: node - linkType: hard - -"buffer@npm:^5.5.0": - version: 5.7.1 - resolution: "buffer@npm:5.7.1" - dependencies: - base64-js: "npm:^1.3.1" - ieee754: "npm:^1.1.13" - checksum: 10c0/27cac81cff434ed2876058d72e7c4789d11ff1120ef32c9de48f59eab58179b66710c488987d295ae89a228f835fc66d088652dffeb8e3ba8659f80eb091d55e - languageName: node - linkType: hard - -"chalk@npm:4.1.2, chalk@npm:^4.1.0, chalk@npm:^4.1.1": - version: 4.1.2 - resolution: "chalk@npm:4.1.2" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 - languageName: node - linkType: hard - -"chalk@npm:^2.0.0, chalk@npm:^2.3.1": - version: 2.4.2 - resolution: "chalk@npm:2.4.2" - dependencies: - ansi-styles: "npm:^3.2.1" - escape-string-regexp: "npm:^1.0.5" - supports-color: "npm:^5.3.0" - checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 - languageName: node - linkType: hard - -"chardet@npm:^0.4.0": - version: 0.4.2 - resolution: "chardet@npm:0.4.2" - checksum: 10c0/287fff1609301b1a9e8dc9730271af7aa24187a8e224d23b8c3eb88cb7c0e8ceb962905377e36947bc07edb69afd188903f4924cc6bd0bd4e7703d498505b70d - languageName: node - linkType: hard - -"chardet@npm:^0.7.0": - version: 0.7.0 - resolution: "chardet@npm:0.7.0" - checksum: 10c0/96e4731b9ec8050cbb56ab684e8c48d6c33f7826b755802d14e3ebfdc51c57afeece3ea39bc6b09acc359e4363525388b915e16640c1378053820f5e70d0f27d - languageName: node - linkType: hard - -"cli-cursor@npm:^2.1.0": - version: 2.1.0 - resolution: "cli-cursor@npm:2.1.0" - dependencies: - restore-cursor: "npm:^2.0.0" - checksum: 10c0/09ee6d8b5b818d840bf80ec9561eaf696672197d3a02a7daee2def96d5f52ce6e0bbe7afca754ccf14f04830b5a1b4556273e983507d5029f95bba3016618eda - languageName: node - linkType: hard - -"cli-cursor@npm:^3.1.0": - version: 3.1.0 - resolution: "cli-cursor@npm:3.1.0" - dependencies: - restore-cursor: "npm:^3.1.0" - checksum: 10c0/92a2f98ff9037d09be3dfe1f0d749664797fb674bf388375a2207a1203b69d41847abf16434203e0089212479e47a358b13a0222ab9fccfe8e2644a7ccebd111 - languageName: node - linkType: hard - -"cli-spinners@npm:^2.5.0": - version: 2.9.2 - resolution: "cli-spinners@npm:2.9.2" - checksum: 10c0/907a1c227ddf0d7a101e7ab8b300affc742ead4b4ebe920a5bf1bc6d45dce2958fcd195eb28fa25275062fe6fa9b109b93b63bc8033396ed3bcb50297008b3a3 - languageName: node - linkType: hard - -"cli-truncate@npm:^1.0.0": - version: 1.1.0 - resolution: "cli-truncate@npm:1.1.0" - dependencies: - slice-ansi: "npm:^1.0.0" - string-width: "npm:^2.0.0" - checksum: 10c0/1083425d2c0d88dfec49b621973d5e79e59acdca33c26498c53d6ca4b854646c906c15b0bb4e2ac88fb7f1e8eaa306a586002b0f50d3e87d0ce608dce1ee8222 - languageName: node - linkType: hard - -"cli-width@npm:^2.0.0": - version: 2.2.1 - resolution: "cli-width@npm:2.2.1" - checksum: 10c0/e3a6d422d657ca111c630f69ee0f1a499e8f114eea158ccb2cdbedd19711edffa217093bbd43dafb34b68d1b1a3b5334126e51d059b9ec1d19afa53b42b3ef86 - languageName: node - linkType: hard - -"cli-width@npm:^3.0.0": - version: 3.0.0 - resolution: "cli-width@npm:3.0.0" - checksum: 10c0/125a62810e59a2564268c80fdff56c23159a7690c003e34aeb2e68497dccff26911998ff49c33916fcfdf71e824322cc3953e3f7b48b27267c7a062c81348a9a - languageName: node - linkType: hard - -"cliui@npm:^7.0.2": - version: 7.0.4 - resolution: "cliui@npm:7.0.4" - dependencies: - string-width: "npm:^4.2.0" - strip-ansi: "npm:^6.0.0" - wrap-ansi: "npm:^7.0.0" - checksum: 10c0/6035f5daf7383470cef82b3d3db00bec70afb3423538c50394386ffbbab135e26c3689c41791f911fa71b62d13d3863c712fdd70f0fbdffd938a1e6fd09aac00 - languageName: node - linkType: hard - -"clone@npm:^1.0.2": - version: 1.0.4 - resolution: "clone@npm:1.0.4" - checksum: 10c0/2176952b3649293473999a95d7bebfc9dc96410f6cbd3d2595cf12fd401f63a4bf41a7adbfd3ab2ff09ed60cb9870c58c6acdd18b87767366fabfc163700f13b - languageName: node - linkType: hard - -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: "npm:1.1.3" - checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: "npm:~1.1.4" - checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 - languageName: node - linkType: hard - -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 - languageName: node - linkType: hard - -"color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 - languageName: node - linkType: hard - -"combined-stream@npm:^1.0.8": - version: 1.0.8 - resolution: "combined-stream@npm:1.0.8" - dependencies: - delayed-stream: "npm:~1.0.0" - checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 - languageName: node - linkType: hard - -"commander@npm:8.3.0": - version: 8.3.0 - resolution: "commander@npm:8.3.0" - checksum: 10c0/8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060 - languageName: node - linkType: hard - -"compare-versions@npm:4.1.4": - version: 4.1.4 - resolution: "compare-versions@npm:4.1.4" - checksum: 10c0/cd3b35190bf2173fa6b43e89ba00606267442d0b4baa39bdb4f969839c266877ffc657f56e484d664cd06b7007a224e344c254545bb6e0184257df8272c5a123 - languageName: node - linkType: hard - -"concurrently@npm:6.5.1": - version: 6.5.1 - resolution: "concurrently@npm:6.5.1" - dependencies: - chalk: "npm:^4.1.0" - date-fns: "npm:^2.16.1" - lodash: "npm:^4.17.21" - rxjs: "npm:^6.6.3" - spawn-command: "npm:^0.0.2-1" - supports-color: "npm:^8.1.0" - tree-kill: "npm:^1.2.2" - yargs: "npm:^16.2.0" - bin: - concurrently: bin/concurrently.js - checksum: 10c0/4bc2eb5d8fa9a87d2241bc1f7830f5432fd52593944eed162567188f36d1f4219f336f72b5e6afee265547e8be1e54c8c893e5693d3874666a9ce5a7ffe4cc81 - languageName: node - linkType: hard - -"consola@npm:^2.15.0": - version: 2.15.3 - resolution: "consola@npm:2.15.3" - checksum: 10c0/34a337e6b4a1349ee4d7b4c568484344418da8fdb829d7d71bfefcd724f608f273987633b6eef465e8de510929907a092e13cb7a28a5d3acb3be446fcc79fd5e - languageName: node - linkType: hard - -"console.table@npm:0.10.0": - version: 0.10.0 - resolution: "console.table@npm:0.10.0" - dependencies: - easy-table: "npm:1.1.0" - checksum: 10c0/b1893a06b422c7e82dca03dec000beabebc26415df558a05e1b9778407a76e4caa1db286df40f72e3780ac5c5b5ef5f4b8a3bef2d22020abb86f6408dc357875 - languageName: node - linkType: hard - -"cz-emoji@npm:^1.3.2-canary.2": - version: 1.3.2-canary.2 - resolution: "cz-emoji@npm:1.3.2-canary.2" - dependencies: - cli-truncate: "npm:^1.0.0" - find-up: "npm:^5.0.0" - fuse.js: "npm:^3.4.5" - homedir: "npm:^0.6.0" - inquirer-autocomplete-prompt: "npm:^0.12.0" - inquirer-maxlength-input-prompt: "npm:^1.0.1" - pad: "npm:^2.3.0" - prettier: "npm:^1.18.2" - read-pkg-up: "npm:^7.0.1" - wrap-ansi: "npm:^7.0.0" - checksum: 10c0/14d6de7631e935042a823581e47c8045dd22a7f9c91cc07bb95f4a47771fbf41a348af63f9e3c363ddcc1b884157693a995421d71cbaa6c6df910ef09d77ba82 - languageName: node - linkType: hard - -"data-uri-to-buffer@npm:^6.0.2": - version: 6.0.2 - resolution: "data-uri-to-buffer@npm:6.0.2" - checksum: 10c0/f76922bf895b3d7d443059ff278c9cc5efc89d70b8b80cd9de0aa79b3adc6d7a17948eefb8692e30398c43635f70ece1673d6085cc9eba2878dbc6c6da5292ac - languageName: node - linkType: hard - -"date-fns@npm:^2.16.1": - version: 2.30.0 - resolution: "date-fns@npm:2.30.0" - dependencies: - "@babel/runtime": "npm:^7.21.0" - checksum: 10c0/e4b521fbf22bc8c3db332bbfb7b094fd3e7627de0259a9d17c7551e2d2702608a7307a449206065916538e384f37b181565447ce2637ae09828427aed9cb5581 - languageName: node - linkType: hard - -"debug@npm:4, debug@npm:^4.3.4": - version: 4.3.7 - resolution: "debug@npm:4.3.7" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b - languageName: node - linkType: hard - -"decidim-rest_full@workspace:.": - version: 0.0.0-use.local - resolution: "decidim-rest_full@workspace:." - dependencies: - "@openapitools/openapi-generator-cli": "npm:^2.15.3" - cz-emoji: "npm:^1.3.2-canary.2" - prettier: "npm:^3.3.3" - languageName: unknown - linkType: soft - -"defaults@npm:^1.0.3": - version: 1.0.4 - resolution: "defaults@npm:1.0.4" - dependencies: - clone: "npm:^1.0.2" - checksum: 10c0/9cfbe498f5c8ed733775db62dfd585780387d93c17477949e1670bfcfb9346e0281ce8c4bf9f4ac1fc0f9b851113bd6dc9e41182ea1644ccd97de639fa13c35a - languageName: node - linkType: hard - -"degenerator@npm:^5.0.0": - version: 5.0.1 - resolution: "degenerator@npm:5.0.1" - dependencies: - ast-types: "npm:^0.13.4" - escodegen: "npm:^2.1.0" - esprima: "npm:^4.0.1" - checksum: 10c0/e48d8a651edeb512a648711a09afec269aac6de97d442a4bb9cf121a66877e0eec11b9727100a10252335c0666ae1c84a8bc1e3a3f47788742c975064d2c7b1c - languageName: node - linkType: hard - -"delayed-stream@npm:~1.0.0": - version: 1.0.0 - resolution: "delayed-stream@npm:1.0.0" - checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 - languageName: node - linkType: hard - -"easy-table@npm:1.1.0": - version: 1.1.0 - resolution: "easy-table@npm:1.1.0" - dependencies: - wcwidth: "npm:>=1.0.1" - dependenciesMeta: - wcwidth: - optional: true - checksum: 10c0/0b7b03723e450c8286bd375bbe7d23247456dbb8f79df055adcfd745bfb91f7604c4e78204ff75d65d5229bec8867cbefca51c57938004f487ff800b587540bb - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 - languageName: node - linkType: hard - -"error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" - dependencies: - is-arrayish: "npm:^0.2.1" - checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.2.0 - resolution: "escalade@npm:3.2.0" - checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 - languageName: node - linkType: hard - -"escodegen@npm:^2.1.0": - version: 2.1.0 - resolution: "escodegen@npm:2.1.0" - dependencies: - esprima: "npm:^4.0.1" - estraverse: "npm:^5.2.0" - esutils: "npm:^2.0.2" - source-map: "npm:~0.6.1" - dependenciesMeta: - source-map: - optional: true - bin: - escodegen: bin/escodegen.js - esgenerate: bin/esgenerate.js - checksum: 10c0/e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3 - languageName: node - linkType: hard - -"esprima@npm:^4.0.1": - version: 4.0.1 - resolution: "esprima@npm:4.0.1" - bin: - esparse: ./bin/esparse.js - esvalidate: ./bin/esvalidate.js - checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 - languageName: node - linkType: hard - -"estraverse@npm:^5.2.0": - version: 5.3.0 - resolution: "estraverse@npm:5.3.0" - checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 - languageName: node - linkType: hard - -"esutils@npm:^2.0.2": - version: 2.0.3 - resolution: "esutils@npm:2.0.3" - checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 - languageName: node - linkType: hard - -"external-editor@npm:^2.0.4, external-editor@npm:^2.1.0": - version: 2.2.0 - resolution: "external-editor@npm:2.2.0" - dependencies: - chardet: "npm:^0.4.0" - iconv-lite: "npm:^0.4.17" - tmp: "npm:^0.0.33" - checksum: 10c0/5440df6ab809467485b3b15557d301e9fa3dda2892d6eaddd036ea337e0ced3e369c319507a123e34749cfce89c51f891848d249c713f54bcfaf95296663ff49 - languageName: node - linkType: hard - -"external-editor@npm:^3.0.3": - version: 3.1.0 - resolution: "external-editor@npm:3.1.0" - dependencies: - chardet: "npm:^0.7.0" - iconv-lite: "npm:^0.4.24" - tmp: "npm:^0.0.33" - checksum: 10c0/c98f1ba3efdfa3c561db4447ff366a6adb5c1e2581462522c56a18bf90dfe4da382f9cd1feee3e330108c3595a854b218272539f311ba1b3298f841eb0fbf339 - languageName: node - linkType: hard - -"fast-safe-stringify@npm:2.1.1": - version: 2.1.1 - resolution: "fast-safe-stringify@npm:2.1.1" - checksum: 10c0/d90ec1c963394919828872f21edaa3ad6f1dddd288d2bd4e977027afff09f5db40f94e39536d4646f7e01761d704d72d51dce5af1b93717f3489ef808f5f4e4d - languageName: node - linkType: hard - -"figures@npm:^2.0.0": - version: 2.0.0 - resolution: "figures@npm:2.0.0" - dependencies: - escape-string-regexp: "npm:^1.0.5" - checksum: 10c0/5dc5a75fec3e7e04ae65d6ce51d28b3e70d4656c51b06996b6fdb2cb5b542df512e3b3c04482f5193a964edddafa5521479ff948fa84e12ff556e53e094ab4ce - languageName: node - linkType: hard - -"figures@npm:^3.0.0": - version: 3.2.0 - resolution: "figures@npm:3.2.0" - dependencies: - escape-string-regexp: "npm:^1.0.5" - checksum: 10c0/9c421646ede432829a50bc4e55c7a4eb4bcb7cc07b5bab2f471ef1ab9a344595bbebb6c5c21470093fbb730cd81bbca119624c40473a125293f656f49cb47629 - languageName: node - linkType: hard - -"find-up@npm:^4.1.0": - version: 4.1.0 - resolution: "find-up@npm:4.1.0" - dependencies: - locate-path: "npm:^5.0.0" - path-exists: "npm:^4.0.0" - checksum: 10c0/0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 - languageName: node - linkType: hard - -"find-up@npm:^5.0.0": - version: 5.0.0 - resolution: "find-up@npm:5.0.0" - dependencies: - locate-path: "npm:^6.0.0" - path-exists: "npm:^4.0.0" - checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a - languageName: node - linkType: hard - -"follow-redirects@npm:^1.15.6": - version: 1.15.9 - resolution: "follow-redirects@npm:1.15.9" - peerDependenciesMeta: - debug: - optional: true - checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f - languageName: node - linkType: hard - -"form-data@npm:^4.0.0": - version: 4.0.1 - resolution: "form-data@npm:4.0.1" - dependencies: - asynckit: "npm:^0.4.0" - combined-stream: "npm:^1.0.8" - mime-types: "npm:^2.1.12" - checksum: 10c0/bb102d570be8592c23f4ea72d7df9daa50c7792eb0cf1c5d7e506c1706e7426a4e4ae48a35b109e91c85f1c0ec63774a21ae252b66f4eb981cb8efef7d0463c8 - languageName: node - linkType: hard - -"fs-extra@npm:10.1.0": - version: 10.1.0 - resolution: "fs-extra@npm:10.1.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^6.0.1" - universalify: "npm:^2.0.0" - checksum: 10c0/5f579466e7109719d162a9249abbeffe7f426eb133ea486e020b89bc6d67a741134076bf439983f2eb79276ceaf6bd7b7c1e43c3fd67fe889863e69072fb0a5e - languageName: node - linkType: hard - -"fs-extra@npm:^11.2.0": - version: 11.2.0 - resolution: "fs-extra@npm:11.2.0" - dependencies: - graceful-fs: "npm:^4.2.0" - jsonfile: "npm:^6.0.1" - universalify: "npm:^2.0.0" - checksum: 10c0/d77a9a9efe60532d2e790e938c81a02c1b24904ef7a3efb3990b835514465ba720e99a6ea56fd5e2db53b4695319b644d76d5a0e9988a2beef80aa7b1da63398 - languageName: node - linkType: hard - -"fs.realpath@npm:^1.0.0": - version: 1.0.0 - resolution: "fs.realpath@npm:1.0.0" - checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 - languageName: node - linkType: hard - -"function-bind@npm:^1.1.2": - version: 1.1.2 - resolution: "function-bind@npm:1.1.2" - checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 - languageName: node - linkType: hard - -"fuse.js@npm:^3.4.5": - version: 3.6.1 - resolution: "fuse.js@npm:3.6.1" - checksum: 10c0/bd9d5bc4d82781de7bb46057e96775f9efc497eb8b334b61cfea589db730c1fe7789bf5ff61b1146c15e18ffe5b27715807e5d436f333662b47917b530ced5e9 - languageName: node - linkType: hard - -"get-caller-file@npm:^2.0.5": - version: 2.0.5 - resolution: "get-caller-file@npm:2.0.5" - checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde - languageName: node - linkType: hard - -"get-uri@npm:^6.0.1": - version: 6.0.3 - resolution: "get-uri@npm:6.0.3" - dependencies: - basic-ftp: "npm:^5.0.2" - data-uri-to-buffer: "npm:^6.0.2" - debug: "npm:^4.3.4" - fs-extra: "npm:^11.2.0" - checksum: 10c0/8d801c462cd5b9c171d4d9e5f17afce3d9ebfbbfb006a88e3e768ce0071a8e2e59ee1ce822915fc43b9d6b83fde7b8d1c9648330ae89778fa41ad774df8ee0ac - languageName: node - linkType: hard - -"glob@npm:9.3.5": - version: 9.3.5 - resolution: "glob@npm:9.3.5" - dependencies: - fs.realpath: "npm:^1.0.0" - minimatch: "npm:^8.0.2" - minipass: "npm:^4.2.4" - path-scurry: "npm:^1.6.1" - checksum: 10c0/2f6c2b9ee019ee21dc258ae97a88719614591e4c979cb4580b1b9df6f0f778a3cb38b4bdaf18dfa584637ea10f89a3c5f2533a5e449cf8741514ad18b0951f2e - languageName: node - linkType: hard - -"graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0": - version: 4.2.11 - resolution: "graceful-fs@npm:4.2.11" - checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 - languageName: node - linkType: hard - -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 - languageName: node - linkType: hard - -"has-flag@npm:^4.0.0": - version: 4.0.0 - resolution: "has-flag@npm:4.0.0" - checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 - languageName: node - linkType: hard - -"hasown@npm:^2.0.2": - version: 2.0.2 - resolution: "hasown@npm:2.0.2" - dependencies: - function-bind: "npm:^1.1.2" - checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 - languageName: node - linkType: hard - -"homedir@npm:^0.6.0": - version: 0.6.0 - resolution: "homedir@npm:0.6.0" - checksum: 10c0/638bd6386b0553ed09dab81eb3abd880e0dcff31773312d0b6176711deda256ec348cc46ce1ee48e3e972b9718adcab2cc12730176db0795de4bb8e52c4c2be7 - languageName: node - linkType: hard - -"hosted-git-info@npm:^2.1.4": - version: 2.8.9 - resolution: "hosted-git-info@npm:2.8.9" - checksum: 10c0/317cbc6b1bbbe23c2a40ae23f3dafe9fa349ce42a89a36f930e3f9c0530c179a3882d2ef1e4141a4c3674d6faaea862138ec55b43ad6f75e387fda2483a13c70 - languageName: node - linkType: hard - -"http-proxy-agent@npm:^7.0.0, http-proxy-agent@npm:^7.0.1": - version: 7.0.2 - resolution: "http-proxy-agent@npm:7.0.2" - dependencies: - agent-base: "npm:^7.1.0" - debug: "npm:^4.3.4" - checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 - languageName: node - linkType: hard - -"https-proxy-agent@npm:^7.0.3, https-proxy-agent@npm:^7.0.5": - version: 7.0.5 - resolution: "https-proxy-agent@npm:7.0.5" - dependencies: - agent-base: "npm:^7.0.2" - debug: "npm:4" - checksum: 10c0/2490e3acec397abeb88807db52cac59102d5ed758feee6df6112ab3ccd8325e8a1ce8bce6f4b66e5470eca102d31e425ace904242e4fa28dbe0c59c4bafa7b2c - languageName: node - linkType: hard - -"iconv-lite@npm:^0.4.17, iconv-lite@npm:^0.4.24": - version: 0.4.24 - resolution: "iconv-lite@npm:0.4.24" - dependencies: - safer-buffer: "npm:>= 2.1.2 < 3" - checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4 - languageName: node - linkType: hard - -"ieee754@npm:^1.1.13": - version: 1.2.1 - resolution: "ieee754@npm:1.2.1" - checksum: 10c0/b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb - languageName: node - linkType: hard - -"inherits@npm:^2.0.3, inherits@npm:^2.0.4": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 - languageName: node - linkType: hard - -"inquirer-autocomplete-prompt@npm:^0.12.0": - version: 0.12.2 - resolution: "inquirer-autocomplete-prompt@npm:0.12.2" - dependencies: - ansi-escapes: "npm:^3.0.0" - chalk: "npm:^2.0.0" - figures: "npm:^2.0.0" - inquirer: "npm:3.2.0" - run-async: "npm:^2.3.0" - checksum: 10c0/073119fe474b8640f02308a0dff29108b906c8ef92747f92ff1593bd429e582896efa7109c912614f0a42ea468cdcaa369959434e3e0f14be23ad6e7af5e8dc2 - languageName: node - linkType: hard - -"inquirer-maxlength-input-prompt@npm:^1.0.1": - version: 1.0.2 - resolution: "inquirer-maxlength-input-prompt@npm:1.0.2" - dependencies: - chalk: "npm:^2.3.1" - inquirer: "npm:^5.1.0" - lodash.invoke: "npm:^4.5.2" - lodash.isfunction: "npm:^3.0.9" - lodash.partialright: "npm:^4.2.1" - checksum: 10c0/33a271790f265c1df0bd65d802e1e06d75e4bf296a20605e3cf3c77518caf63434a7bef7c33cc3794f8bb7da98090e9faaafa44c9f92153eaed35aa066da772d - languageName: node - linkType: hard - -"inquirer@npm:3.2.0": - version: 3.2.0 - resolution: "inquirer@npm:3.2.0" - dependencies: - ansi-escapes: "npm:^2.0.0" - chalk: "npm:^2.0.0" - cli-cursor: "npm:^2.1.0" - cli-width: "npm:^2.0.0" - external-editor: "npm:^2.0.4" - figures: "npm:^2.0.0" - lodash: "npm:^4.3.0" - mute-stream: "npm:0.0.7" - run-async: "npm:^2.2.0" - rx-lite: "npm:^4.0.8" - rx-lite-aggregates: "npm:^4.0.8" - string-width: "npm:^2.1.0" - strip-ansi: "npm:^4.0.0" - through: "npm:^2.3.6" - checksum: 10c0/4cb13c3648cff0107b6a93a7bb5931fa132e9ba2feb8be004ce526eb84f5b2a99da55a61ff48bbab202e42081e316b43f686544a18f4899c993da61925f16974 - languageName: node - linkType: hard - -"inquirer@npm:8.2.6": - version: 8.2.6 - resolution: "inquirer@npm:8.2.6" - dependencies: - ansi-escapes: "npm:^4.2.1" - chalk: "npm:^4.1.1" - cli-cursor: "npm:^3.1.0" - cli-width: "npm:^3.0.0" - external-editor: "npm:^3.0.3" - figures: "npm:^3.0.0" - lodash: "npm:^4.17.21" - mute-stream: "npm:0.0.8" - ora: "npm:^5.4.1" - run-async: "npm:^2.4.0" - rxjs: "npm:^7.5.5" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - through: "npm:^2.3.6" - wrap-ansi: "npm:^6.0.1" - checksum: 10c0/eb5724de1778265323f3a68c80acfa899378cb43c24cdcb58661386500e5696b6b0b6c700e046b7aa767fe7b4823c6f04e6ddc268173e3f84116112529016296 - languageName: node - linkType: hard - -"inquirer@npm:^5.1.0": - version: 5.2.0 - resolution: "inquirer@npm:5.2.0" - dependencies: - ansi-escapes: "npm:^3.0.0" - chalk: "npm:^2.0.0" - cli-cursor: "npm:^2.1.0" - cli-width: "npm:^2.0.0" - external-editor: "npm:^2.1.0" - figures: "npm:^2.0.0" - lodash: "npm:^4.3.0" - mute-stream: "npm:0.0.7" - run-async: "npm:^2.2.0" - rxjs: "npm:^5.5.2" - string-width: "npm:^2.1.0" - strip-ansi: "npm:^4.0.0" - through: "npm:^2.3.6" - checksum: 10c0/26c8771f9c12b6f3aedeb397d3f70af69ff6527cac1b51603ffb4c272a9070207c831b3a3f004f1ed5dea762d98eb67cdf7ec91122af84dbba5b4ac63db2256d - languageName: node - linkType: hard - -"ip-address@npm:^9.0.5": - version: 9.0.5 - resolution: "ip-address@npm:9.0.5" - dependencies: - jsbn: "npm:1.1.0" - sprintf-js: "npm:^1.1.3" - checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc - languageName: node - linkType: hard - -"is-arrayish@npm:^0.2.1": - version: 0.2.1 - resolution: "is-arrayish@npm:0.2.1" - checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 - languageName: node - linkType: hard - -"is-core-module@npm:^2.13.0": - version: 2.15.1 - resolution: "is-core-module@npm:2.15.1" - dependencies: - hasown: "npm:^2.0.2" - checksum: 10c0/53432f10c69c40bfd2fa8914133a68709ff9498c86c3bf5fca3cdf3145a56fd2168cbf4a43b29843a6202a120a5f9c5ffba0a4322e1e3441739bc0b641682612 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^2.0.0": - version: 2.0.0 - resolution: "is-fullwidth-code-point@npm:2.0.0" - checksum: 10c0/e58f3e4a601fc0500d8b2677e26e9fe0cd450980e66adb29d85b6addf7969731e38f8e43ed2ec868a09c101a55ac3d8b78902209269f38c5286bc98f5bc1b4d9 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc - languageName: node - linkType: hard - -"is-interactive@npm:^1.0.0": - version: 1.0.0 - resolution: "is-interactive@npm:1.0.0" - checksum: 10c0/dd47904dbf286cd20aa58c5192161be1a67138485b9836d5a70433b21a45442e9611b8498b8ab1f839fc962c7620667a50535fdfb4a6bc7989b8858645c06b4d - languageName: node - linkType: hard - -"is-unicode-supported@npm:^0.1.0": - version: 0.1.0 - resolution: "is-unicode-supported@npm:0.1.0" - checksum: 10c0/00cbe3455c3756be68d2542c416cab888aebd5012781d6819749fefb15162ff23e38501fe681b3d751c73e8ff561ac09a5293eba6f58fdf0178462ce6dcb3453 - languageName: node - linkType: hard - -"iterare@npm:1.2.1": - version: 1.2.1 - resolution: "iterare@npm:1.2.1" - checksum: 10c0/02667d486e3e83ead028ba8484d927498c2ceab7e8c6a69dd881fd02abc4114f00b13abb36b592252fbb578b6e6f99ca1dfc2835408b9158c9a112a9964f453f - languageName: node - linkType: hard - -"js-tokens@npm:^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed - languageName: node - linkType: hard - -"jsbn@npm:1.1.0": - version: 1.1.0 - resolution: "jsbn@npm:1.1.0" - checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 - languageName: node - linkType: hard - -"json-parse-even-better-errors@npm:^2.3.0": - version: 2.3.1 - resolution: "json-parse-even-better-errors@npm:2.3.1" - checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 - languageName: node - linkType: hard - -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" - dependencies: - graceful-fs: "npm:^4.1.6" - universalify: "npm:^2.0.0" - dependenciesMeta: - graceful-fs: - optional: true - checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 - languageName: node - linkType: hard - -"lines-and-columns@npm:^1.1.6": - version: 1.2.4 - resolution: "lines-and-columns@npm:1.2.4" - checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d - languageName: node - linkType: hard - -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" - dependencies: - p-locate: "npm:^4.1.0" - checksum: 10c0/33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 - languageName: node - linkType: hard - -"locate-path@npm:^6.0.0": - version: 6.0.0 - resolution: "locate-path@npm:6.0.0" - dependencies: - p-locate: "npm:^5.0.0" - checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 - languageName: node - linkType: hard - -"lodash.invoke@npm:^4.5.2": - version: 4.5.2 - resolution: "lodash.invoke@npm:4.5.2" - checksum: 10c0/eaa4662abf0eef63a3d0d2e1e57677f821c7920ea99683aede13de78d39045ab62ef246b4542922632304cd826ecf3b0ac8cbd7ca8da2a6b67ba09959460ad55 - languageName: node - linkType: hard - -"lodash.isfunction@npm:^3.0.9": - version: 3.0.9 - resolution: "lodash.isfunction@npm:3.0.9" - checksum: 10c0/e88620922f5f104819496884779ca85bfc542efb2946df661ab3e2cd38da5c8375434c6adbedfc76dd3c2b04075d2ba8ec215cfdedf08ddd2e3c3467e8a26ccd - languageName: node - linkType: hard - -"lodash.partialright@npm:^4.2.1": - version: 4.2.1 - resolution: "lodash.partialright@npm:4.2.1" - checksum: 10c0/10b619e3920ac99d847fb39f71c299d54d871a68f2bcb7ca754098ddb304e413e55787ee1be86aa262ce24ca7243f3cd1cccdef0ee8f682108558860a3d38223 - languageName: node - linkType: hard - -"lodash@npm:4.17.21, lodash@npm:^4.17.21, lodash@npm:^4.3.0": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c - languageName: node - linkType: hard - -"log-symbols@npm:^4.1.0": - version: 4.1.0 - resolution: "log-symbols@npm:4.1.0" - dependencies: - chalk: "npm:^4.1.0" - is-unicode-supported: "npm:^0.1.0" - checksum: 10c0/67f445a9ffa76db1989d0fa98586e5bc2fd5247260dafb8ad93d9f0ccd5896d53fb830b0e54dade5ad838b9de2006c826831a3c528913093af20dff8bd24aca6 - languageName: node - linkType: hard - -"lru-cache@npm:^10.2.0": - version: 10.4.3 - resolution: "lru-cache@npm:10.4.3" - checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb - languageName: node - linkType: hard - -"lru-cache@npm:^7.14.1": - version: 7.18.3 - resolution: "lru-cache@npm:7.18.3" - checksum: 10c0/b3a452b491433db885beed95041eb104c157ef7794b9c9b4d647be503be91769d11206bb573849a16b4cc0d03cbd15ffd22df7960997788b74c1d399ac7a4fed - languageName: node - linkType: hard - -"mime-db@npm:1.52.0": - version: 1.52.0 - resolution: "mime-db@npm:1.52.0" - checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa - languageName: node - linkType: hard - -"mime-types@npm:^2.1.12": - version: 2.1.35 - resolution: "mime-types@npm:2.1.35" - dependencies: - mime-db: "npm:1.52.0" - checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 - languageName: node - linkType: hard - -"mimic-fn@npm:^1.0.0": - version: 1.2.0 - resolution: "mimic-fn@npm:1.2.0" - checksum: 10c0/ad55214aec6094c0af4c0beec1a13787556f8116ed88807cf3f05828500f21f93a9482326bcd5a077ae91e3e8795b4e76b5b4c8bb12237ff0e4043a365516cba - languageName: node - linkType: hard - -"mimic-fn@npm:^2.1.0": - version: 2.1.0 - resolution: "mimic-fn@npm:2.1.0" - checksum: 10c0/b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4 - languageName: node - linkType: hard - -"minimatch@npm:^8.0.2": - version: 8.0.4 - resolution: "minimatch@npm:8.0.4" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/a0a394c356dd5b4cb7f821720841a82fa6f07c9c562c5b716909d1b6ec5e56a7e4c4b5029da26dd256b7d2b3a3f38cbf9ddd8680e887b9b5282b09c05501c1ca - languageName: node - linkType: hard - -"minipass@npm:^4.2.4": - version: 4.2.8 - resolution: "minipass@npm:4.2.8" - checksum: 10c0/4ea76b030d97079f4429d6e8a8affd90baf1b6a1898977c8ccce4701c5a2ba2792e033abc6709373f25c2c4d4d95440d9d5e9464b46b7b76ca44d2ce26d939ce - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 - languageName: node - linkType: hard - -"ms@npm:^2.1.3": - version: 2.1.3 - resolution: "ms@npm:2.1.3" - checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 - languageName: node - linkType: hard - -"mute-stream@npm:0.0.7": - version: 0.0.7 - resolution: "mute-stream@npm:0.0.7" - checksum: 10c0/c687cfe99289166fe17dcbd0cf49612c5d267410a7819b654a82df45016967d7b2b0b18b35410edef86de6bb089a00413557dc0182c5e78a4af50ba5d61edb42 - languageName: node - linkType: hard - -"mute-stream@npm:0.0.8": - version: 0.0.8 - resolution: "mute-stream@npm:0.0.8" - checksum: 10c0/18d06d92e5d6d45e2b63c0e1b8f25376af71748ac36f53c059baa8b76ffac31c5ab225480494e7d35d30215ecdb18fed26ec23cafcd2f7733f2f14406bcd19e2 - languageName: node - linkType: hard - -"netmask@npm:^2.0.2": - version: 2.0.2 - resolution: "netmask@npm:2.0.2" - checksum: 10c0/cafd28388e698e1138ace947929f842944d0f1c0b87d3fa2601a61b38dc89397d33c0ce2c8e7b99e968584b91d15f6810b91bef3f3826adf71b1833b61d4bf4f - languageName: node - linkType: hard - -"node-fetch@npm:^2.6.1": - version: 2.7.0 - resolution: "node-fetch@npm:2.7.0" - dependencies: - whatwg-url: "npm:^5.0.0" - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - checksum: 10c0/b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8 - languageName: node - linkType: hard - -"normalize-package-data@npm:^2.5.0": - version: 2.5.0 - resolution: "normalize-package-data@npm:2.5.0" - dependencies: - hosted-git-info: "npm:^2.1.4" - resolve: "npm:^1.10.0" - semver: "npm:2 || 3 || 4 || 5" - validate-npm-package-license: "npm:^3.0.1" - checksum: 10c0/357cb1646deb42f8eb4c7d42c4edf0eec312f3628c2ef98501963cc4bbe7277021b2b1d977f982b2edce78f5a1014613ce9cf38085c3df2d76730481357ca504 - languageName: node - linkType: hard - -"onetime@npm:^2.0.0": - version: 2.0.1 - resolution: "onetime@npm:2.0.1" - dependencies: - mimic-fn: "npm:^1.0.0" - checksum: 10c0/b4e44a8c34e70e02251bfb578a6e26d6de6eedbed106cd78211d2fd64d28b6281d54924696554e4e966559644243753ac5df73c87f283b0927533d3315696215 - languageName: node - linkType: hard - -"onetime@npm:^5.1.0": - version: 5.1.2 - resolution: "onetime@npm:5.1.2" - dependencies: - mimic-fn: "npm:^2.1.0" - checksum: 10c0/ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f - languageName: node - linkType: hard - -"ora@npm:^5.4.1": - version: 5.4.1 - resolution: "ora@npm:5.4.1" - dependencies: - bl: "npm:^4.1.0" - chalk: "npm:^4.1.0" - cli-cursor: "npm:^3.1.0" - cli-spinners: "npm:^2.5.0" - is-interactive: "npm:^1.0.0" - is-unicode-supported: "npm:^0.1.0" - log-symbols: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - wcwidth: "npm:^1.0.1" - checksum: 10c0/10ff14aace236d0e2f044193362b22edce4784add08b779eccc8f8ef97195cae1248db8ec1ec5f5ff076f91acbe573f5f42a98c19b78dba8c54eefff983cae85 - languageName: node - linkType: hard - -"os-tmpdir@npm:~1.0.2": - version: 1.0.2 - resolution: "os-tmpdir@npm:1.0.2" - checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 - languageName: node - linkType: hard - -"p-limit@npm:^2.2.0": - version: 2.3.0 - resolution: "p-limit@npm:2.3.0" - dependencies: - p-try: "npm:^2.0.0" - checksum: 10c0/8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 - languageName: node - linkType: hard - -"p-limit@npm:^3.0.2": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: "npm:^0.1.0" - checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a - languageName: node - linkType: hard - -"p-locate@npm:^4.1.0": - version: 4.1.0 - resolution: "p-locate@npm:4.1.0" - dependencies: - p-limit: "npm:^2.2.0" - checksum: 10c0/1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 - languageName: node - linkType: hard - -"p-locate@npm:^5.0.0": - version: 5.0.0 - resolution: "p-locate@npm:5.0.0" - dependencies: - p-limit: "npm:^3.0.2" - checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a - languageName: node - linkType: hard - -"p-try@npm:^2.0.0": - version: 2.2.0 - resolution: "p-try@npm:2.2.0" - checksum: 10c0/c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f - languageName: node - linkType: hard - -"pac-proxy-agent@npm:^7.0.1": - version: 7.0.2 - resolution: "pac-proxy-agent@npm:7.0.2" - dependencies: - "@tootallnate/quickjs-emscripten": "npm:^0.23.0" - agent-base: "npm:^7.0.2" - debug: "npm:^4.3.4" - get-uri: "npm:^6.0.1" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.5" - pac-resolver: "npm:^7.0.1" - socks-proxy-agent: "npm:^8.0.4" - checksum: 10c0/1ef0812bb860d2c695aa3a8604acdb4239b8074183c9fdb9bdf3747b8b28bbb88f22269d3ca95cae825c8ed0ca82681e6692c0e304c961fe004231e579d1ca91 - languageName: node - linkType: hard - -"pac-resolver@npm:^7.0.1": - version: 7.0.1 - resolution: "pac-resolver@npm:7.0.1" - dependencies: - degenerator: "npm:^5.0.0" - netmask: "npm:^2.0.2" - checksum: 10c0/5f3edd1dd10fded31e7d1f95776442c3ee51aa098c28b74ede4927d9677ebe7cebb2636750c24e945f5b84445e41ae39093d3a1014a994e5ceb9f0b1b88ebff5 - languageName: node - linkType: hard - -"pad@npm:^2.3.0": - version: 2.3.0 - resolution: "pad@npm:2.3.0" - dependencies: - wcwidth: "npm:^1.0.1" - checksum: 10c0/feec4291c1bbd784a3a7a14a2ce306c4e23fc9ea15fe13047c71958948a71fce19569b8fa36dcf57605cadee2934861c0cee8dc8a2a56caea19e23be50f105c1 - languageName: node - linkType: hard - -"parse-json@npm:^5.0.0": - version: 5.2.0 - resolution: "parse-json@npm:5.2.0" - dependencies: - "@babel/code-frame": "npm:^7.0.0" - error-ex: "npm:^1.3.1" - json-parse-even-better-errors: "npm:^2.3.0" - lines-and-columns: "npm:^1.1.6" - checksum: 10c0/77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 - languageName: node - linkType: hard - -"path-exists@npm:^4.0.0": - version: 4.0.0 - resolution: "path-exists@npm:4.0.0" - checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b - languageName: node - linkType: hard - -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 - languageName: node - linkType: hard - -"path-scurry@npm:^1.6.1": - version: 1.11.1 - resolution: "path-scurry@npm:1.11.1" - dependencies: - lru-cache: "npm:^10.2.0" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d - languageName: node - linkType: hard - -"path-to-regexp@npm:3.3.0": - version: 3.3.0 - resolution: "path-to-regexp@npm:3.3.0" - checksum: 10c0/ffa0ebe7088d38d435a8d08b0fe6e8c93ceb2a81a65d4dd1d9a538f52e09d5e3474ed5f553cb3b180d894b0caa10698a68737ab599fd1e56b4663d1a64c9f77b - languageName: node - linkType: hard - -"picocolors@npm:^1.0.0": - version: 1.1.1 - resolution: "picocolors@npm:1.1.1" - checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 - languageName: node - linkType: hard - -"prettier@npm:^1.18.2": - version: 1.19.1 - resolution: "prettier@npm:1.19.1" - bin: - prettier: ./bin-prettier.js - checksum: 10c0/12efb4e486c1e1d006e9eadd3b6585fc6beb9481dc801080fc23d3e75ec599d88c6fea1b40aef167128069e8fe76b4205bb8306ad145575d1b051b8fa70cfaae - languageName: node - linkType: hard - -"prettier@npm:^3.3.3": - version: 3.3.3 - resolution: "prettier@npm:3.3.3" - bin: - prettier: bin/prettier.cjs - checksum: 10c0/b85828b08e7505716324e4245549b9205c0cacb25342a030ba8885aba2039a115dbcf75a0b7ca3b37bc9d101ee61fab8113fc69ca3359f2a226f1ecc07ad2e26 - languageName: node - linkType: hard - -"proxy-agent@npm:6.4.0": - version: 6.4.0 - resolution: "proxy-agent@npm:6.4.0" - dependencies: - agent-base: "npm:^7.0.2" - debug: "npm:^4.3.4" - http-proxy-agent: "npm:^7.0.1" - https-proxy-agent: "npm:^7.0.3" - lru-cache: "npm:^7.14.1" - pac-proxy-agent: "npm:^7.0.1" - proxy-from-env: "npm:^1.1.0" - socks-proxy-agent: "npm:^8.0.2" - checksum: 10c0/0c5b85cacf67eec9d8add025a5e577b2c895672e4187079ec41b0ee2a6dacd90e69a837936cb3ac141dd92b05b50a325b9bfe86ab0dc3b904011aa3bcf406fc0 - languageName: node - linkType: hard - -"proxy-from-env@npm:^1.1.0": - version: 1.1.0 - resolution: "proxy-from-env@npm:1.1.0" - checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b - languageName: node - linkType: hard - -"read-pkg-up@npm:^7.0.1": - version: 7.0.1 - resolution: "read-pkg-up@npm:7.0.1" - dependencies: - find-up: "npm:^4.1.0" - read-pkg: "npm:^5.2.0" - type-fest: "npm:^0.8.1" - checksum: 10c0/82b3ac9fd7c6ca1bdc1d7253eb1091a98ff3d195ee0a45386582ce3e69f90266163c34121e6a0a02f1630073a6c0585f7880b3865efcae9c452fa667f02ca385 - languageName: node - linkType: hard - -"read-pkg@npm:^5.2.0": - version: 5.2.0 - resolution: "read-pkg@npm:5.2.0" - dependencies: - "@types/normalize-package-data": "npm:^2.4.0" - normalize-package-data: "npm:^2.5.0" - parse-json: "npm:^5.0.0" - type-fest: "npm:^0.6.0" - checksum: 10c0/b51a17d4b51418e777029e3a7694c9bd6c578a5ab99db544764a0b0f2c7c0f58f8a6bc101f86a6fceb8ba6d237d67c89acf6170f6b98695d0420ddc86cf109fb - languageName: node - linkType: hard - -"readable-stream@npm:^3.4.0": - version: 3.6.2 - resolution: "readable-stream@npm:3.6.2" - dependencies: - inherits: "npm:^2.0.3" - string_decoder: "npm:^1.1.1" - util-deprecate: "npm:^1.0.1" - checksum: 10c0/e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7 - languageName: node - linkType: hard - -"reflect-metadata@npm:0.1.13": - version: 0.1.13 - resolution: "reflect-metadata@npm:0.1.13" - checksum: 10c0/728bff0b376b05639fd11ed80c648b61f7fe653c5b506d7ca118e58b6752b9b00810fe0c86227ecf02bd88da6251ab3eb19fd403aaf2e9ff5ef36a2fda643026 - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.14.0": - version: 0.14.1 - resolution: "regenerator-runtime@npm:0.14.1" - checksum: 10c0/1b16eb2c4bceb1665c89de70dcb64126a22bc8eb958feef3cd68fe11ac6d2a4899b5cd1b80b0774c7c03591dc57d16631a7f69d2daa2ec98100e2f29f7ec4cc4 - languageName: node - linkType: hard - -"require-directory@npm:^2.1.1": - version: 2.1.1 - resolution: "require-directory@npm:2.1.1" - checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 - languageName: node - linkType: hard - -"resolve@npm:^1.10.0": - version: 1.22.8 - resolution: "resolve@npm:1.22.8" - dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/07e179f4375e1fd072cfb72ad66d78547f86e6196c4014b31cb0b8bb1db5f7ca871f922d08da0fbc05b94e9fd42206f819648fa3b5b873ebbc8e1dc68fec433a - languageName: node - linkType: hard - -"resolve@patch:resolve@npm%3A^1.10.0#optional!builtin": - version: 1.22.8 - resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d" - dependencies: - is-core-module: "npm:^2.13.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/0446f024439cd2e50c6c8fa8ba77eaa8370b4180f401a96abf3d1ebc770ac51c1955e12764cde449fde3fff480a61f84388e3505ecdbab778f4bef5f8212c729 - languageName: node - linkType: hard - -"restore-cursor@npm:^2.0.0": - version: 2.0.0 - resolution: "restore-cursor@npm:2.0.0" - dependencies: - onetime: "npm:^2.0.0" - signal-exit: "npm:^3.0.2" - checksum: 10c0/f5b335bee06f440445e976a7031a3ef53691f9b7c4a9d42a469a0edaf8a5508158a0d561ff2b26a1f4f38783bcca2c0e5c3a44f927326f6694d5b44d7a4993e6 - languageName: node - linkType: hard - -"restore-cursor@npm:^3.1.0": - version: 3.1.0 - resolution: "restore-cursor@npm:3.1.0" - dependencies: - onetime: "npm:^5.1.0" - signal-exit: "npm:^3.0.2" - checksum: 10c0/8051a371d6aa67ff21625fa94e2357bd81ffdc96267f3fb0fc4aaf4534028343836548ef34c240ffa8c25b280ca35eb36be00b3cb2133fa4f51896d7e73c6b4f - languageName: node - linkType: hard - -"run-async@npm:^2.2.0, run-async@npm:^2.3.0, run-async@npm:^2.4.0": - version: 2.4.1 - resolution: "run-async@npm:2.4.1" - checksum: 10c0/35a68c8f1d9664f6c7c2e153877ca1d6e4f886e5ca067c25cdd895a6891ff3a1466ee07c63d6a9be306e9619ff7d509494e6d9c129516a36b9fd82263d579ee1 - languageName: node - linkType: hard - -"rx-lite-aggregates@npm:^4.0.8": - version: 4.0.8 - resolution: "rx-lite-aggregates@npm:4.0.8" - dependencies: - rx-lite: "npm:*" - checksum: 10c0/e21f95feca7e63b861fd711a980924cbaa9cb8ebc4786c7cbc287e153d5e96fbd48c0a8a978e53594174d4a68d5d2263b823a2b975c80a955f5748eb59cdec60 - languageName: node - linkType: hard - -"rx-lite@npm:*, rx-lite@npm:^4.0.8": - version: 4.0.8 - resolution: "rx-lite@npm:4.0.8" - checksum: 10c0/a3e76e3a6471347855196e30450bc500f7b1becfdbb0f3d58b1f1d5d6f89165a159e8549b4403084023de99938d67f43a3319c92b1b46c3fd8d7318ecce42c79 - languageName: node - linkType: hard - -"rxjs@npm:7.8.1, rxjs@npm:^7.5.5": - version: 7.8.1 - resolution: "rxjs@npm:7.8.1" - dependencies: - tslib: "npm:^2.1.0" - checksum: 10c0/3c49c1ecd66170b175c9cacf5cef67f8914dcbc7cd0162855538d365c83fea631167cacb644b3ce533b2ea0e9a4d0b12175186985f89d75abe73dbd8f7f06f68 - languageName: node - linkType: hard - -"rxjs@npm:^5.5.2": - version: 5.5.12 - resolution: "rxjs@npm:5.5.12" - dependencies: - symbol-observable: "npm:1.0.1" - checksum: 10c0/da1a467cda40792f41d16998e4766ab27f14c077b2b333a35ff0b26251211d646f7aadd0e8255e1f7da95c038f40f1322be030424376592b28361388a3001115 - languageName: node - linkType: hard - -"rxjs@npm:^6.6.3": - version: 6.6.7 - resolution: "rxjs@npm:6.6.7" - dependencies: - tslib: "npm:^1.9.0" - checksum: 10c0/e556a13a9aa89395e5c9d825eabcfa325568d9c9990af720f3f29f04a888a3b854f25845c2b55875d875381abcae2d8100af9cacdc57576e7ed6be030a01d2fe - languageName: node - linkType: hard - -"safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 - languageName: node - linkType: hard - -"semver@npm:2 || 3 || 4 || 5": - version: 5.7.2 - resolution: "semver@npm:5.7.2" - bin: - semver: bin/semver - checksum: 10c0/e4cf10f86f168db772ae95d86ba65b3fd6c5967c94d97c708ccb463b778c2ee53b914cd7167620950fc07faf5a564e6efe903836639e512a1aa15fbc9667fa25 - languageName: node - linkType: hard - -"signal-exit@npm:^3.0.2": - version: 3.0.7 - resolution: "signal-exit@npm:3.0.7" - checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912 - languageName: node - linkType: hard - -"slice-ansi@npm:^1.0.0": - version: 1.0.0 - resolution: "slice-ansi@npm:1.0.0" - dependencies: - is-fullwidth-code-point: "npm:^2.0.0" - checksum: 10c0/589d9b80b33b8274f88942d4da7c3698cebb8bba0d367c79a42f95a4f69eb7645fdf51821ffbd6d0af6aea6dda70f725925b6cf5e670a53b7ae2c31e7fd10a2e - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.2, socks-proxy-agent@npm:^8.0.4": - version: 8.0.4 - resolution: "socks-proxy-agent@npm:8.0.4" - dependencies: - agent-base: "npm:^7.1.1" - debug: "npm:^4.3.4" - socks: "npm:^2.8.3" - checksum: 10c0/345593bb21b95b0508e63e703c84da11549f0a2657d6b4e3ee3612c312cb3a907eac10e53b23ede3557c6601d63252103494caa306b66560f43af7b98f53957a - languageName: node - linkType: hard - -"socks@npm:^2.8.3": - version: 2.8.3 - resolution: "socks@npm:2.8.3" - dependencies: - ip-address: "npm:^9.0.5" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7 - languageName: node - linkType: hard - -"source-map@npm:~0.6.1": - version: 0.6.1 - resolution: "source-map@npm:0.6.1" - checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 - languageName: node - linkType: hard - -"spawn-command@npm:^0.0.2-1": - version: 0.0.2 - resolution: "spawn-command@npm:0.0.2" - checksum: 10c0/b22f2d71239e6e628a400831861ba747750bbb40c0a53323754cf7b84330b73d81e40ff1f9055e6d1971818679510208a9302e13d9ff3b32feb67e74d7a1b3ef - languageName: node - linkType: hard - -"spdx-correct@npm:^3.0.0": - version: 3.2.0 - resolution: "spdx-correct@npm:3.2.0" - dependencies: - spdx-expression-parse: "npm:^3.0.0" - spdx-license-ids: "npm:^3.0.0" - checksum: 10c0/49208f008618b9119208b0dadc9208a3a55053f4fd6a0ae8116861bd22696fc50f4142a35ebfdb389e05ccf2de8ad142573fefc9e26f670522d899f7b2fe7386 - languageName: node - linkType: hard - -"spdx-exceptions@npm:^2.1.0": - version: 2.5.0 - resolution: "spdx-exceptions@npm:2.5.0" - checksum: 10c0/37217b7762ee0ea0d8b7d0c29fd48b7e4dfb94096b109d6255b589c561f57da93bf4e328c0290046115961b9209a8051ad9f525e48d433082fc79f496a4ea940 - languageName: node - linkType: hard - -"spdx-expression-parse@npm:^3.0.0": - version: 3.0.1 - resolution: "spdx-expression-parse@npm:3.0.1" - dependencies: - spdx-exceptions: "npm:^2.1.0" - spdx-license-ids: "npm:^3.0.0" - checksum: 10c0/6f8a41c87759fa184a58713b86c6a8b028250f158159f1d03ed9d1b6ee4d9eefdc74181c8ddc581a341aa971c3e7b79e30b59c23b05d2436d5de1c30bdef7171 - languageName: node - linkType: hard - -"spdx-license-ids@npm:^3.0.0": - version: 3.0.20 - resolution: "spdx-license-ids@npm:3.0.20" - checksum: 10c0/bdff7534fad6ef59be49becda1edc3fb7f5b3d6f296a715516ab9d972b8ad59af2c34b2003e01db8970d4c673d185ff696ba74c6b61d3bf327e2b3eac22c297c - languageName: node - linkType: hard - -"sprintf-js@npm:^1.1.3": - version: 1.1.3 - resolution: "sprintf-js@npm:1.1.3" - checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec - languageName: node - linkType: hard - -"string-width@npm:^2.0.0, string-width@npm:^2.1.0": - version: 2.1.1 - resolution: "string-width@npm:2.1.1" - dependencies: - is-fullwidth-code-point: "npm:^2.0.0" - strip-ansi: "npm:^4.0.0" - checksum: 10c0/e5f2b169fcf8a4257a399f95d069522f056e92ec97dbdcb9b0cdf14d688b7ca0b1b1439a1c7b9773cd79446cbafd582727279d6bfdd9f8edd306ea5e90e5b610 - languageName: node - linkType: hard - -"string-width@npm:^4.1.0, string-width@npm:^4.2.0": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.1" - checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b - languageName: node - linkType: hard - -"string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: "npm:~5.2.0" - checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d - languageName: node - linkType: hard - -"strip-ansi@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-ansi@npm:4.0.0" - dependencies: - ansi-regex: "npm:^3.0.0" - checksum: 10c0/d75d9681e0637ea316ddbd7d4d3be010b1895a17e885155e0ed6a39755ae0fd7ef46e14b22162e66a62db122d3a98ab7917794e255532ab461bb0a04feb03e7d - languageName: node - linkType: hard - -"strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: "npm:^5.0.1" - checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 - languageName: node - linkType: hard - -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: "npm:^3.0.0" - checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 - languageName: node - linkType: hard - -"supports-color@npm:^7.1.0": - version: 7.2.0 - resolution: "supports-color@npm:7.2.0" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 - languageName: node - linkType: hard - -"supports-color@npm:^8.1.0": - version: 8.1.1 - resolution: "supports-color@npm:8.1.1" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 - languageName: node - linkType: hard - -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 - languageName: node - linkType: hard - -"symbol-observable@npm:1.0.1": - version: 1.0.1 - resolution: "symbol-observable@npm:1.0.1" - checksum: 10c0/f6a4232c2ed3a7932018de3377de11b0fe9b1acd74ed759d79854e7177f7ed94e89493093441d942a5c7d0b7b5f58667d5ad3aea3573a8260011515745a96991 - languageName: node - linkType: hard - -"through@npm:^2.3.6": - version: 2.3.8 - resolution: "through@npm:2.3.8" - checksum: 10c0/4b09f3774099de0d4df26d95c5821a62faee32c7e96fb1f4ebd54a2d7c11c57fe88b0a0d49cf375de5fee5ae6bf4eb56dbbf29d07366864e2ee805349970d3cc - languageName: node - linkType: hard - -"tmp@npm:^0.0.33": - version: 0.0.33 - resolution: "tmp@npm:0.0.33" - dependencies: - os-tmpdir: "npm:~1.0.2" - checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 - languageName: node - linkType: hard - -"tr46@npm:~0.0.3": - version: 0.0.3 - resolution: "tr46@npm:0.0.3" - checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11 - languageName: node - linkType: hard - -"tree-kill@npm:^1.2.2": - version: 1.2.2 - resolution: "tree-kill@npm:1.2.2" - bin: - tree-kill: cli.js - checksum: 10c0/7b1b7c7f17608a8f8d20a162e7957ac1ef6cd1636db1aba92f4e072dc31818c2ff0efac1e3d91064ede67ed5dc57c565420531a8134090a12ac10cf792ab14d2 - languageName: node - linkType: hard - -"tslib@npm:2.7.0": - version: 2.7.0 - resolution: "tslib@npm:2.7.0" - checksum: 10c0/469e1d5bf1af585742128827000711efa61010b699cb040ab1800bcd3ccdd37f63ec30642c9e07c4439c1db6e46345582614275daca3e0f4abae29b0083f04a6 - languageName: node - linkType: hard - -"tslib@npm:2.8.1, tslib@npm:^2.0.1, tslib@npm:^2.1.0": - version: 2.8.1 - resolution: "tslib@npm:2.8.1" - checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 - languageName: node - linkType: hard - -"tslib@npm:^1.9.0": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 - languageName: node - linkType: hard - -"type-fest@npm:^0.21.3": - version: 0.21.3 - resolution: "type-fest@npm:0.21.3" - checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 - languageName: node - linkType: hard - -"type-fest@npm:^0.6.0": - version: 0.6.0 - resolution: "type-fest@npm:0.6.0" - checksum: 10c0/0c585c26416fce9ecb5691873a1301b5aff54673c7999b6f925691ed01f5b9232db408cdbb0bd003d19f5ae284322523f44092d1f81ca0a48f11f7cf0be8cd38 - languageName: node - linkType: hard - -"type-fest@npm:^0.8.1": - version: 0.8.1 - resolution: "type-fest@npm:0.8.1" - checksum: 10c0/dffbb99329da2aa840f506d376c863bd55f5636f4741ad6e65e82f5ce47e6914108f44f340a0b74009b0cb5d09d6752ae83203e53e98b1192cf80ecee5651636 - languageName: node - linkType: hard - -"uid@npm:2.0.2": - version: 2.0.2 - resolution: "uid@npm:2.0.2" - dependencies: - "@lukeed/csprng": "npm:^1.0.0" - checksum: 10c0/e9d02d0562c74e74b5a2519e586db9d7f8204978e476cddd191ee1a9efb85efafdbab2dbf3fc3dde0f5da01fd9da161f37d604dabf513447fd2c03d008f1324c - languageName: node - linkType: hard - -"universalify@npm:^2.0.0": - version: 2.0.1 - resolution: "universalify@npm:2.0.1" - checksum: 10c0/73e8ee3809041ca8b818efb141801a1004e3fc0002727f1531f4de613ea281b494a40909596dae4a042a4fb6cd385af5d4db2e137b1362e0e91384b828effd3a - languageName: node - linkType: hard - -"util-deprecate@npm:^1.0.1": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 - languageName: node - linkType: hard - -"validate-npm-package-license@npm:^3.0.1": - version: 3.0.4 - resolution: "validate-npm-package-license@npm:3.0.4" - dependencies: - spdx-correct: "npm:^3.0.0" - spdx-expression-parse: "npm:^3.0.0" - checksum: 10c0/7b91e455a8de9a0beaa9fe961e536b677da7f48c9a493edf4d4d4a87fd80a7a10267d438723364e432c2fcd00b5650b5378275cded362383ef570276e6312f4f - languageName: node - linkType: hard - -"wcwidth@npm:>=1.0.1, wcwidth@npm:^1.0.1": - version: 1.0.1 - resolution: "wcwidth@npm:1.0.1" - dependencies: - defaults: "npm:^1.0.3" - checksum: 10c0/5b61ca583a95e2dd85d7078400190efd452e05751a64accb8c06ce4db65d7e0b0cde9917d705e826a2e05cc2548f61efde115ffa374c3e436d04be45c889e5b4 - languageName: node - linkType: hard - -"webidl-conversions@npm:^3.0.0": - version: 3.0.1 - resolution: "webidl-conversions@npm:3.0.1" - checksum: 10c0/5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db - languageName: node - linkType: hard - -"whatwg-url@npm:^5.0.0": - version: 5.0.0 - resolution: "whatwg-url@npm:5.0.0" - dependencies: - tr46: "npm:~0.0.3" - webidl-conversions: "npm:^3.0.0" - checksum: 10c0/1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5 - languageName: node - linkType: hard - -"wrap-ansi@npm:^6.0.1": - version: 6.2.0 - resolution: "wrap-ansi@npm:6.2.0" - dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/baad244e6e33335ea24e86e51868fe6823626e3a3c88d9a6674642afff1d34d9a154c917e74af8d845fd25d170c4ea9cf69a47133c3f3656e1252b3d462d9f6c - languageName: node - linkType: hard - -"wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da - languageName: node - linkType: hard - -"y18n@npm:^5.0.5": - version: 5.0.8 - resolution: "y18n@npm:5.0.8" - checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 - languageName: node - linkType: hard - -"yargs-parser@npm:^20.2.2": - version: 20.2.9 - resolution: "yargs-parser@npm:20.2.9" - checksum: 10c0/0685a8e58bbfb57fab6aefe03c6da904a59769bd803a722bb098bd5b0f29d274a1357762c7258fb487512811b8063fb5d2824a3415a0a4540598335b3b086c72 - languageName: node - linkType: hard - -"yargs@npm:^16.2.0": - version: 16.2.0 - resolution: "yargs@npm:16.2.0" - dependencies: - cliui: "npm:^7.0.2" - escalade: "npm:^3.1.1" - get-caller-file: "npm:^2.0.5" - require-directory: "npm:^2.1.1" - string-width: "npm:^4.2.0" - y18n: "npm:^5.0.5" - yargs-parser: "npm:^20.2.2" - checksum: 10c0/b1dbfefa679848442454b60053a6c95d62f2d2e21dd28def92b647587f415969173c6e99a0f3bab4f1b67ee8283bf735ebe3544013f09491186ba9e8a9a2b651 - languageName: node - linkType: hard - -"yocto-queue@npm:^0.1.0": - version: 0.1.0 - resolution: "yocto-queue@npm:0.1.0" - checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f - languageName: node - linkType: hard +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/runtime@^7.21.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== + dependencies: + regenerator-runtime "^0.14.0" + +"@lukeed/csprng@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@lukeed/csprng/-/csprng-1.1.0.tgz#1e3e4bd05c1cc7a0b2ddbd8a03f39f6e4b5e6cfe" + integrity sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA== + +"@nestjs/axios@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@nestjs/axios/-/axios-3.1.1.tgz#565160180c81b580e4b192792fe506f5db9e1bcc" + integrity sha512-ySoxrzqX80P1q6LKLKGcgyBd2utg4gbC+4FsJNpXYvILorMlxss/ECNogD9EXLCE4JS5exVFD5ez0nK5hXcNTQ== + +"@nestjs/common@10.4.6": + version "10.4.6" + resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-10.4.6.tgz#952e8fd0ceafeffcc4eaf47effd67fb395844ae0" + integrity sha512-KkezkZvU9poWaNq4L+lNvx+386hpOxPJkfXBBeSMrcqBOx8kVr36TGN2uYkF4Ta4zNu1KbCjmZbc0rhHSg296g== + dependencies: + uid "2.0.2" + iterare "1.2.1" + tslib "2.7.0" + +"@nestjs/core@10.4.6": + version "10.4.6" + resolved "https://registry.yarnpkg.com/@nestjs/core/-/core-10.4.6.tgz#797b381f12bd62d2e425897058fa219da4c3689d" + integrity sha512-zXVPxCNRfO6gAy0yvEDjUxE/8gfZICJFpsl2lZAUH31bPb6m+tXuhUq2mVCTEltyMYQ+DYtRe+fEYM2v152N1g== + dependencies: + uid "2.0.2" + "@nuxtjs/opencollective" "0.3.2" + fast-safe-stringify "2.1.1" + iterare "1.2.1" + path-to-regexp "3.3.0" + tslib "2.7.0" + +"@nuxtjs/opencollective@0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz#620ce1044f7ac77185e825e1936115bb38e2681c" + integrity sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA== + dependencies: + chalk "^4.1.0" + consola "^2.15.0" + node-fetch "^2.6.1" + +"@openapitools/openapi-generator-cli@^2.15.3": + version "2.15.3" + resolved "https://registry.yarnpkg.com/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.15.3.tgz#3642aa438c46f2bf9bcdd6a278399e0709c94fdb" + integrity sha512-2UBnsDlMt36thhdXxisbA1qReVtbCaw+NCvXoslRXlaJBL4qkAmZUhNeDLNu3LCbwA2PASMWhJSqeLwgwMCitw== + dependencies: + "@nestjs/axios" "3.1.1" + "@nestjs/common" "10.4.6" + "@nestjs/core" "10.4.6" + "@nuxtjs/opencollective" "0.3.2" + axios "1.7.7" + chalk "4.1.2" + commander "8.3.0" + compare-versions "4.1.4" + concurrently "6.5.1" + console.table "0.10.0" + fs-extra "10.1.0" + glob "9.3.5" + inquirer "8.2.6" + lodash "4.17.21" + proxy-agent "6.4.0" + reflect-metadata "0.1.13" + rxjs "7.8.1" + tslib "2.8.1" + +"@tootallnate/quickjs-emscripten@^0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz#db4ecfd499a9765ab24002c3b696d02e6d32a12c" + integrity sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA== + +"@types/normalize-package-data@^2.4.0": + version "2.4.4" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" + integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + +agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + +ansi-escapes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" + integrity sha512-tH/fSoQp4DrEodDK3QpdiWiZTSe7sBJ9eOqcQBZ0o9HTM+5M/viSEn+sPMoTuPjQQ8n++w3QJoPEjt8LVPcrCg== + +ansi-escapes@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ast-types@^0.13.4: + version "0.13.4" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" + integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== + dependencies: + tslib "^2.0.1" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +axios@1.7.7: + version "1.7.7" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.7.tgz#2f554296f9892a72ac8d8e4c5b79c14a91d0a47f" + integrity sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +basic-ftp@^5.0.2: + version "5.0.5" + resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.5.tgz#14a474f5fffecca1f4f406f1c26b18f800225ac0" + integrity sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg== + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +chalk@4.1.2, chalk@^4.1.0, chalk@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^2.0.0, chalk@^2.3.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + integrity sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg== + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== + dependencies: + restore-cursor "^2.0.0" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-spinners@^2.5.0: + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + +cli-truncate@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" + integrity sha512-bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA== + dependencies: + slice-ansi "^1.0.0" + string-width "^2.0.0" + +cli-width@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +compare-versions@4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-4.1.4.tgz#3571f4d610924d4414846a4183d386c8f3d51112" + integrity sha512-FemMreK9xNyL8gQevsdRMrvO4lFCkQP7qbuktn1q8ndcNk1+0mz7lgE7b/sNvbhVgY4w6tMN1FDp6aADjqw2rw== + +concurrently@6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-6.5.1.tgz#4518c67f7ac680cf5c34d5adf399a2a2047edc8c" + integrity sha512-FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag== + dependencies: + chalk "^4.1.0" + date-fns "^2.16.1" + lodash "^4.17.21" + rxjs "^6.6.3" + spawn-command "^0.0.2-1" + supports-color "^8.1.0" + tree-kill "^1.2.2" + yargs "^16.2.0" + +consola@^2.15.0: + version "2.15.3" + resolved "https://registry.yarnpkg.com/consola/-/consola-2.15.3.tgz#2e11f98d6a4be71ff72e0bdf07bd23e12cb61550" + integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== + +console.table@0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/console.table/-/console.table-0.10.0.tgz#0917025588875befd70cf2eff4bef2c6e2d75d04" + integrity sha512-dPyZofqggxuvSf7WXvNjuRfnsOk1YazkVP8FdxH4tcH2c37wc79/Yl6Bhr7Lsu00KMgy2ql/qCMuNu8xctZM8g== + dependencies: + easy-table "1.1.0" + +cz-emoji@^1.3.2-canary.2: + version "1.3.2-canary.2" + resolved "https://registry.yarnpkg.com/cz-emoji/-/cz-emoji-1.3.2-canary.2.tgz#a1ad4c7e453b14b926ededc87a817d9a9e9c1afc" + integrity sha512-XVH9N3P5sepyCRZGVqXJcEkVHT9dPcgBipTmZgkeQUhOJEtaGy0hakMcNdaq1d7N0ZwWVEnsCIs2m/NgLT+SaA== + dependencies: + cli-truncate "^1.0.0" + find-up "^5.0.0" + fuse.js "^3.4.5" + homedir "^0.6.0" + inquirer-autocomplete-prompt "^0.12.0" + inquirer-maxlength-input-prompt "^1.0.1" + pad "^2.3.0" + prettier "^1.18.2" + read-pkg-up "^7.0.1" + wrap-ansi "^7.0.0" + +data-uri-to-buffer@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz#8a58bb67384b261a38ef18bea1810cb01badd28b" + integrity sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw== + +date-fns@^2.16.1: + version "2.30.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== + dependencies: + "@babel/runtime" "^7.21.0" + +debug@4, debug@^4.3.4: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +degenerator@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-5.0.1.tgz#9403bf297c6dad9a1ece409b37db27954f91f2f5" + integrity sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ== + dependencies: + ast-types "^0.13.4" + escodegen "^2.1.0" + esprima "^4.0.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +easy-table@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/easy-table/-/easy-table-1.1.0.tgz#86f9ab4c102f0371b7297b92a651d5824bc8cb73" + integrity sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA== + optionalDependencies: + wcwidth ">=1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +escalade@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escodegen@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== + dependencies: + esprima "^4.0.1" + estraverse "^5.2.0" + esutils "^2.0.2" + optionalDependencies: + source-map "~0.6.1" + +esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +external-editor@^2.0.4, external-editor@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +fast-safe-stringify@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" + integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== + dependencies: + escape-string-regexp "^1.0.5" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +follow-redirects@^1.15.6: + version "1.15.9" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== + +form-data@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" + integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +fs-extra@10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^11.2.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +fuse.js@^3.4.5: + version "3.6.1" + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c" + integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-uri@^6.0.1: + version "6.0.3" + resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-6.0.3.tgz#0d26697bc13cf91092e519aa63aa60ee5b6f385a" + integrity sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw== + dependencies: + basic-ftp "^5.0.2" + data-uri-to-buffer "^6.0.2" + debug "^4.3.4" + fs-extra "^11.2.0" + +glob@9.3.5: + version "9.3.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21" + integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q== + dependencies: + fs.realpath "^1.0.0" + minimatch "^8.0.2" + minipass "^4.2.4" + path-scurry "^1.6.1" + +graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +homedir@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/homedir/-/homedir-0.6.0.tgz#2b21db66bf08a6db38249a3eff52d7d18706af1e" + integrity sha512-KZFBHenkVuyyG4uaqRSXqWJr3HTxcaPguM7rU1BlH/mtbDlzaXNSXTa9AhV+fXEjrNemHu9vtLRIaM8/8OW0xA== + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== + dependencies: + agent-base "^7.1.0" + debug "^4.3.4" + +https-proxy-agent@^7.0.3, https-proxy-agent@^7.0.5: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + dependencies: + agent-base "^7.0.2" + debug "4" + +iconv-lite@^0.4.17, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inquirer-autocomplete-prompt@^0.12.0: + version "0.12.2" + resolved "https://registry.yarnpkg.com/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-0.12.2.tgz#693bbd9da586f98b126bd83305bb8d8714dc4155" + integrity sha512-XbgPlnFdAboyUYWIrOkV8vh426BVZWzvbIKRkNY/aCvKhoCSWOO6ZQagAEOGA5ff2iOboNEaT1Wa/cM9ekj8jw== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + figures "^2.0.0" + inquirer "3.2.0" + run-async "^2.3.0" + +inquirer-maxlength-input-prompt@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/inquirer-maxlength-input-prompt/-/inquirer-maxlength-input-prompt-1.0.2.tgz#1156d3ec5ee2f33847889731211a44e8acf738b9" + integrity sha512-bRs4PfQ7k+M3dDGadFo4//PlEYwWV/tKMNHV0m1jVHSGocyLvlRLuWrNgDuVAmXiEydM5QgfEEP7hbWNtgv0oA== + dependencies: + chalk "^2.3.1" + inquirer "^5.1.0" + lodash.invoke "^4.5.2" + lodash.isfunction "^3.0.9" + lodash.partialright "^4.2.1" + +inquirer@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.0.tgz#45b44c2160c729d7578c54060b3eed94487bb42b" + integrity sha512-4CyUYMP7lOBkiUU1rR24WGrfRX6SucwbY2Mqb1PdApU24wnTIk4TsnkQwV72dDdIKZ2ycLP+fWCV+tA7wwgoew== + dependencies: + ansi-escapes "^2.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +inquirer@8.2.6: + version "8.2.6" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562" + integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^6.0.1" + +inquirer@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" + integrity sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.1.0" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^5.5.2" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-core-module@^2.13.0: + version "2.15.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== + dependencies: + hasown "^2.0.2" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +iterare@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/iterare/-/iterare-1.2.1.tgz#139c400ff7363690e33abffa33cbba8920f00042" + integrity sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.invoke@^4.5.2: + version "4.5.2" + resolved "https://registry.yarnpkg.com/lodash.invoke/-/lodash.invoke-4.5.2.tgz#01ca07e470903affa3ffec7ad2ed22723d2f697c" + integrity sha512-SC4Usc0XbIKuz3eH7oNwPqibKHfTJSGVZwO/6eGhdoPzqexOY7z43pKo8xz0M5zzXSRteADV6fW7cRf6Ru0+VA== + +lodash.isfunction@^3.0.9: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" + integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== + +lodash.partialright@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/lodash.partialright/-/lodash.partialright-4.2.1.tgz#0130d80e83363264d40074f329b8a3e7a8a1cc4b" + integrity sha512-yebmPMQZH7i4El6SdJTW9rn8irWl8VTcsmiWqm/I4sY8/ZjbSo0Z512HL6soeAu3mh5rhx5uIIo6kYJOQXbCxw== + +lodash@4.17.21, lodash@^4.17.21, lodash@^4.3.0: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + +lru-cache@^7.14.1: + version "7.18.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" + integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +minimatch@^8.0.2: + version "8.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-8.0.4.tgz#847c1b25c014d4e9a7f68aaf63dedd668a626229" + integrity sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA== + dependencies: + brace-expansion "^2.0.1" + +minipass@^4.2.4: + version "4.2.8" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a" + integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + +ms@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ== + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +netmask@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" + integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== + +node-fetch@^2.6.1: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== + dependencies: + mimic-fn "^1.0.0" + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pac-proxy-agent@^7.0.1: + version "7.0.2" + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz#0fb02496bd9fb8ae7eb11cfd98386daaac442f58" + integrity sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg== + dependencies: + "@tootallnate/quickjs-emscripten" "^0.23.0" + agent-base "^7.0.2" + debug "^4.3.4" + get-uri "^6.0.1" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.5" + pac-resolver "^7.0.1" + socks-proxy-agent "^8.0.4" + +pac-resolver@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-7.0.1.tgz#54675558ea368b64d210fd9c92a640b5f3b8abb6" + integrity sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg== + dependencies: + degenerator "^5.0.0" + netmask "^2.0.2" + +pad@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pad/-/pad-2.3.0.tgz#d604f0d5433c3e1500e207279cc5cd0234b1c2aa" + integrity sha512-lxrgnOG5AXmzMRT1O5urWtYFxHnFSE+QntgTHij1nvS4W+ubhQLmQRHmZXDeEvk9I00itAixLqU9Q6fE0gW3sw== + dependencies: + wcwidth "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.6.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-to-regexp@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-3.3.0.tgz#f7f31d32e8518c2660862b644414b6d5c63a611b" + integrity sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw== + +picocolors@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +prettier@^1.18.2: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + +prettier@^3.3.3: + version "3.4.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.1.tgz#e211d451d6452db0a291672ca9154bc8c2579f7b" + integrity sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg== + +proxy-agent@6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.4.0.tgz#b4e2dd51dee2b377748aef8d45604c2d7608652d" + integrity sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ== + dependencies: + agent-base "^7.0.2" + debug "^4.3.4" + http-proxy-agent "^7.0.1" + https-proxy-agent "^7.0.3" + lru-cache "^7.14.1" + pac-proxy-agent "^7.0.1" + proxy-from-env "^1.1.0" + socks-proxy-agent "^8.0.2" + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +reflect-metadata@0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" + integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +resolve@^1.10.0: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +run-async@^2.2.0, run-async@^2.3.0, run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + integrity sha512-3xPNZGW93oCjiO7PtKxRK6iOVYBWBvtf9QHDfU23Oc+dLIQmAV//UnyXV/yihv81VS/UqoQPk4NegS8EFi55Hg== + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + integrity sha512-Cun9QucwK6MIrp3mry/Y7hqD1oFqTYLQ4pGxaHTjIdaFDWRGGLikqp6u8LcWJnzpoALg9hap+JGk8sFIUuEGNA== + +rxjs@7.8.1, rxjs@^7.5.5: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +rxjs@^5.5.2: + version "5.5.12" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" + integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== + dependencies: + symbol-observable "1.0.1" + +rxjs@^6.6.3: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +"semver@2 || 3 || 4 || 5": + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +signal-exit@^3.0.2: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +slice-ansi@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== + dependencies: + is-fullwidth-code-point "^2.0.0" + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +socks-proxy-agent@^8.0.2, socks-proxy-agent@^8.0.4: + version "8.0.4" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz#9071dca17af95f483300316f4b063578fa0db08c" + integrity sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw== + dependencies: + agent-base "^7.1.1" + debug "^4.3.4" + socks "^2.8.3" + +socks@^2.8.3: + version "2.8.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" + integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== + dependencies: + ip-address "^9.0.5" + smart-buffer "^4.2.0" + +source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spawn-command@^0.0.2-1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2.tgz#9544e1a43ca045f8531aac1a48cb29bdae62338e" + integrity sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.20" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz#e44ed19ed318dd1e5888f93325cee800f0f51b89" + integrity sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw== + +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + +string-width@^2.0.0, string-width@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + integrity sha512-Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw== + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +tree-kill@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + +tslib@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" + integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== + +tslib@2.8.1, tslib@^2.0.1, tslib@^2.1.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +tslib@^1.9.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +uid@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/uid/-/uid-2.0.2.tgz#4b5782abf0f2feeefc00fa88006b2b3b7af3e3b9" + integrity sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g== + dependencies: + "@lukeed/csprng" "^1.0.0" + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +wcwidth@>=1.0.1, wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +wrap-ansi@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==