diff --git a/README.md b/README.md index 078bd611..0bec014d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is an example of using OAuth2 Implicit Flow in a specification to describe ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 1.4.5 +- API version: 1.4.6 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen @@ -92,6 +92,7 @@ Class | Method | HTTP request | Description *CertificationApi* | [**GetCertifications**](docs/CertificationApi.md#getcertifications) | **Get** /certifications | Get a list of all Certifications independent of the Organization *CertificationApi* | [**GetCertificationsForOrganization**](docs/CertificationApi.md#getcertificationsfororganization) | **Get** /organizations/{organizationId}/certifications | Get a list of all certifications for a organization *CertificationApi* | [**MoveCertification**](docs/CertificationApi.md#movecertification) | **Put** /organizations/{organizationId}/certificates/{certificateId} | Move a Certification to an Organization +*CertificationApi* | [**SearchAllCertifications**](docs/CertificationApi.md#searchallcertifications) | **Get** /certifications/search/{text} | Fulltext search on all certifications *CertificationApi* | [**SearchCertifications**](docs/CertificationApi.md#searchcertifications) | **Post** /certifications/search | Complex search over certification entities *CertificationApi* | [**UpdateCertification**](docs/CertificationApi.md#updatecertification) | **Put** /certifications/{certificationId} | Update a Certification *CertificationApi* | [**UpdatePersonCertification**](docs/CertificationApi.md#updatepersoncertification) | **Put** /persons/{personId}/certifications/{certificationId} | Update a Certification of a Person @@ -109,6 +110,7 @@ Class | Method | HTTP request | Description *IndustryApi* | [**DetachOrganizationFromIndustry**](docs/IndustryApi.md#detachorganizationfromindustry) | **Delete** /organizations/{organizationId}/industries/{industryId} | Remove an Organization to an Industry *IndustryApi* | [**GetIndustries**](docs/IndustryApi.md#getindustries) | **Get** /industries | Get all Industries *IndustryApi* | [**GetIndustry**](docs/IndustryApi.md#getindustry) | **Get** /industries/{industryId} | Get details about an Industry +*IndustryApi* | [**SearchAllIndustries**](docs/IndustryApi.md#searchallindustries) | **Get** /industries/search/{text} | Fulltext search on all industries *IndustryApi* | [**UpdateIndustry**](docs/IndustryApi.md#updateindustry) | **Put** /industries/{industryId} | Update an Industry *LanguageApi* | [**AddLanguageToCountry**](docs/LanguageApi.md#addlanguagetocountry) | **Post** /countries/{countryId}/languages/{languageId} | Assign a language to a country *LanguageApi* | [**AddPersonLanguage**](docs/LanguageApi.md#addpersonlanguage) | **Post** /persons/{personId}/languages/{languageId} | Assign a language to the person @@ -142,6 +144,7 @@ Class | Method | HTTP request | Description *OrganizationApi* | [**GetOrganizations**](docs/OrganizationApi.md#getorganizations) | **Get** /organizations | Get a list of all Organizations *OrganizationApi* | [**MergeOrganizations**](docs/OrganizationApi.md#mergeorganizations) | **Put** /organizations/{organizationId}/merge/{otherOrganizationId} | Merge two organizations *OrganizationApi* | [**MoveCertification**](docs/OrganizationApi.md#movecertification) | **Put** /organizations/{organizationId}/certificates/{certificateId} | Move a Certification to an Organization +*OrganizationApi* | [**SearchAllOrganizations**](docs/OrganizationApi.md#searchallorganizations) | **Get** /organizations/search/{text} | Fulltext search on all organizations *OrganizationApi* | [**UpdateOffice**](docs/OrganizationApi.md#updateoffice) | **Put** /organizations/{organizationId}/offices/{officeId} | Update an Office for an Organization *OrganizationApi* | [**UpdateOrganization**](docs/OrganizationApi.md#updateorganization) | **Put** /organizations/{organizationId} | Update an Organization *OrganizationApi* | [**UpdateProjectOrganization**](docs/OrganizationApi.md#updateprojectorganization) | **Put** /organizations/{organizationId}/projects/{projectId} | project is now point to the new organization @@ -229,6 +232,7 @@ Class | Method | HTTP request | Description *SkillApi* | [**GetSkills**](docs/SkillApi.md#getskills) | **Get** /skills | Get a list of all skills, optionally only root, optionally only kinds *SkillApi* | [**MergeSkills**](docs/SkillApi.md#mergeskills) | **Put** /skills/{skillId}/merge/{otherSkillId} | Merge two skills *SkillApi* | [**RemoveSkillFromParentSkill**](docs/SkillApi.md#removeskillfromparentskill) | **Delete** /skills/{skillId}/parents/{parentSkillId} | Detaches a Skill from parent Skill, return the parent Skill +*SkillApi* | [**SearchAllSkills**](docs/SkillApi.md#searchallskills) | **Get** /skills/search/{text} | Fulltext search on all skills *SkillApi* | [**UpdatePersonProjectSkill**](docs/SkillApi.md#updatepersonprojectskill) | **Put** /persons/{personId}/projects/{projectId}/skills/{skillId} | Update the level of a Skill in a Project participation *SkillApi* | [**UpdatePersonSkillExperience**](docs/SkillApi.md#updatepersonskillexperience) | **Put** /persons/{personId}/experiences/skills/{skillId} | Edit an Skill experience to a Person *SkillApi* | [**UpdatePersonSkillExperiences**](docs/SkillApi.md#updatepersonskillexperiences) | **Put** /persons/{personId}/experiences | Edit an Skill experience to a Person diff --git a/api/openapi.yaml b/api/openapi.yaml index a7add79a..a03224fa 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -3,7 +3,7 @@ info: description: This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. title: YASM (Yet Another Skill Management) API - version: 1.4.5 + version: 1.4.6 servers: - url: http://localhost:8080/api/v1 - url: https://dev-yasm.prodyna.com/api/v1 @@ -243,6 +243,52 @@ paths: summary: Update an Organization tags: - Organization + /organizations/search/{text}: + get: + operationId: searchAllOrganizations + parameters: + - explode: false + in: path + name: text + required: true + schema: + type: string + style: simple + - example: 0 + explode: true + in: query + name: skip + required: false + schema: + default: 0 + example: 0 + type: integer + style: form + - explode: true + in: query + name: limit + required: false + schema: + default: 20 + example: 20 + type: integer + style: form + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/PagedOrganizations' + description: OK + default: + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: The specified resource was not found + summary: Fulltext search on all organizations + tags: + - Organization /organizations/{organizationId}/merge/{otherOrganizationId}: put: operationId: mergeOrganizations @@ -718,6 +764,52 @@ paths: summary: Update an Industry tags: - Industry + /industries/search/{text}: + get: + operationId: searchAllIndustries + parameters: + - explode: false + in: path + name: text + required: true + schema: + type: string + style: simple + - example: 0 + explode: true + in: query + name: skip + required: false + schema: + default: 0 + example: 0 + type: integer + style: form + - explode: true + in: query + name: limit + required: false + schema: + default: 20 + example: 20 + type: integer + style: form + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/PagedIndustries' + description: OK + default: + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: The specified resource was not found + summary: Fulltext search on all industries + tags: + - Industry /organizations/{organizationId}/certifications: get: operationId: getCertificationsForOrganization @@ -1086,6 +1178,52 @@ paths: summary: Update a Certification tags: - Certification + /certifications/search/{text}: + get: + operationId: searchAllCertifications + parameters: + - explode: false + in: path + name: text + required: true + schema: + type: string + style: simple + - example: 0 + explode: true + in: query + name: skip + required: false + schema: + default: 0 + example: 0 + type: integer + style: form + - explode: true + in: query + name: limit + required: false + schema: + default: 20 + example: 20 + type: integer + style: form + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/PagedCertifications' + description: OK + default: + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: The specified resource was not found + summary: Fulltext search on all certifications + tags: + - Certification /certifications/{certificationId}/skills/{skillId}: delete: operationId: deleteSkillFromCertification @@ -1563,6 +1701,52 @@ paths: summary: Create a Skill tags: - Skill + /skills/search/{text}: + get: + operationId: searchAllSkills + parameters: + - explode: false + in: path + name: text + required: true + schema: + type: string + style: simple + - example: 0 + explode: true + in: query + name: skip + required: false + schema: + default: 0 + example: 0 + type: integer + style: form + - explode: true + in: query + name: limit + required: false + schema: + default: 20 + example: 20 + type: integer + style: form + responses: + "200": + content: + application/json: + schema: + $ref: '#/components/schemas/PagedSkills' + description: OK + default: + content: + application/json: + schema: + $ref: '#/components/schemas/Error' + description: The specified resource was not found + summary: Fulltext search on all skills + tags: + - Skill /skills/{skillId}: delete: operationId: deleteSkill diff --git a/api_availability.go b/api_availability.go index a4e32bde..fa7b5908 100644 --- a/api_availability.go +++ b/api_availability.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_certification.go b/api_certification.go index d51bcdd5..c1b60f56 100644 --- a/api_certification.go +++ b/api_certification.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -1190,6 +1190,132 @@ func (a *CertificationApiService) MoveCertificationExecute(r CertificationApiMov return localVarReturnValue, localVarHTTPResponse, nil } +type CertificationApiSearchAllCertificationsRequest struct { + ctx context.Context + ApiService *CertificationApiService + text string + skip *int32 + limit *int32 +} + +func (r CertificationApiSearchAllCertificationsRequest) Skip(skip int32) CertificationApiSearchAllCertificationsRequest { + r.skip = &skip + return r +} + +func (r CertificationApiSearchAllCertificationsRequest) Limit(limit int32) CertificationApiSearchAllCertificationsRequest { + r.limit = &limit + return r +} + +func (r CertificationApiSearchAllCertificationsRequest) Execute() (*PagedCertifications, *http.Response, error) { + return r.ApiService.SearchAllCertificationsExecute(r) +} + +/* +SearchAllCertifications Fulltext search on all certifications + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param text + @return CertificationApiSearchAllCertificationsRequest +*/ +func (a *CertificationApiService) SearchAllCertifications(ctx context.Context, text string) CertificationApiSearchAllCertificationsRequest { + return CertificationApiSearchAllCertificationsRequest{ + ApiService: a, + ctx: ctx, + text: text, + } +} + +// Execute executes the request +// @return PagedCertifications +func (a *CertificationApiService) SearchAllCertificationsExecute(r CertificationApiSearchAllCertificationsRequest) (*PagedCertifications, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodGet + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *PagedCertifications + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "CertificationApiService.SearchAllCertifications") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/certifications/search/{text}" + localVarPath = strings.Replace(localVarPath, "{"+"text"+"}", url.PathEscape(parameterToString(r.text, "")), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + if r.skip != nil { + localVarQueryParams.Add("skip", parameterToString(*r.skip, "")) + } + if r.limit != nil { + localVarQueryParams.Add("limit", parameterToString(*r.limit, "")) + } + // to determine the Content-Type header + localVarHTTPContentTypes := []string{} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type CertificationApiSearchCertificationsRequest struct { ctx context.Context ApiService *CertificationApiService diff --git a/api_country.go b/api_country.go index ba68dd1b..00231e25 100644 --- a/api_country.go +++ b/api_country.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_industry.go b/api_industry.go index 75d4690c..793682be 100644 --- a/api_industry.go +++ b/api_industry.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -700,6 +700,132 @@ func (a *IndustryApiService) GetIndustryExecute(r IndustryApiGetIndustryRequest) return localVarReturnValue, localVarHTTPResponse, nil } +type IndustryApiSearchAllIndustriesRequest struct { + ctx context.Context + ApiService *IndustryApiService + text string + skip *int32 + limit *int32 +} + +func (r IndustryApiSearchAllIndustriesRequest) Skip(skip int32) IndustryApiSearchAllIndustriesRequest { + r.skip = &skip + return r +} + +func (r IndustryApiSearchAllIndustriesRequest) Limit(limit int32) IndustryApiSearchAllIndustriesRequest { + r.limit = &limit + return r +} + +func (r IndustryApiSearchAllIndustriesRequest) Execute() (*PagedIndustries, *http.Response, error) { + return r.ApiService.SearchAllIndustriesExecute(r) +} + +/* +SearchAllIndustries Fulltext search on all industries + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param text + @return IndustryApiSearchAllIndustriesRequest +*/ +func (a *IndustryApiService) SearchAllIndustries(ctx context.Context, text string) IndustryApiSearchAllIndustriesRequest { + return IndustryApiSearchAllIndustriesRequest{ + ApiService: a, + ctx: ctx, + text: text, + } +} + +// Execute executes the request +// @return PagedIndustries +func (a *IndustryApiService) SearchAllIndustriesExecute(r IndustryApiSearchAllIndustriesRequest) (*PagedIndustries, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodGet + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *PagedIndustries + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "IndustryApiService.SearchAllIndustries") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/industries/search/{text}" + localVarPath = strings.Replace(localVarPath, "{"+"text"+"}", url.PathEscape(parameterToString(r.text, "")), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + if r.skip != nil { + localVarQueryParams.Add("skip", parameterToString(*r.skip, "")) + } + if r.limit != nil { + localVarQueryParams.Add("limit", parameterToString(*r.limit, "")) + } + // to determine the Content-Type header + localVarHTTPContentTypes := []string{} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type IndustryApiUpdateIndustryRequest struct { ctx context.Context ApiService *IndustryApiService diff --git a/api_language.go b/api_language.go index 3018715b..d3c20654 100644 --- a/api_language.go +++ b/api_language.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_office.go b/api_office.go index b78ffffd..c8a6bc1b 100644 --- a/api_office.go +++ b/api_office.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_organization.go b/api_organization.go index 6f743cad..f3c09e38 100644 --- a/api_organization.go +++ b/api_organization.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -1758,6 +1758,132 @@ func (a *OrganizationApiService) MoveCertificationExecute(r OrganizationApiMoveC return localVarReturnValue, localVarHTTPResponse, nil } +type OrganizationApiSearchAllOrganizationsRequest struct { + ctx context.Context + ApiService *OrganizationApiService + text string + skip *int32 + limit *int32 +} + +func (r OrganizationApiSearchAllOrganizationsRequest) Skip(skip int32) OrganizationApiSearchAllOrganizationsRequest { + r.skip = &skip + return r +} + +func (r OrganizationApiSearchAllOrganizationsRequest) Limit(limit int32) OrganizationApiSearchAllOrganizationsRequest { + r.limit = &limit + return r +} + +func (r OrganizationApiSearchAllOrganizationsRequest) Execute() (*PagedOrganizations, *http.Response, error) { + return r.ApiService.SearchAllOrganizationsExecute(r) +} + +/* +SearchAllOrganizations Fulltext search on all organizations + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param text + @return OrganizationApiSearchAllOrganizationsRequest +*/ +func (a *OrganizationApiService) SearchAllOrganizations(ctx context.Context, text string) OrganizationApiSearchAllOrganizationsRequest { + return OrganizationApiSearchAllOrganizationsRequest{ + ApiService: a, + ctx: ctx, + text: text, + } +} + +// Execute executes the request +// @return PagedOrganizations +func (a *OrganizationApiService) SearchAllOrganizationsExecute(r OrganizationApiSearchAllOrganizationsRequest) (*PagedOrganizations, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodGet + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *PagedOrganizations + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "OrganizationApiService.SearchAllOrganizations") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/organizations/search/{text}" + localVarPath = strings.Replace(localVarPath, "{"+"text"+"}", url.PathEscape(parameterToString(r.text, "")), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + if r.skip != nil { + localVarQueryParams.Add("skip", parameterToString(*r.skip, "")) + } + if r.limit != nil { + localVarQueryParams.Add("limit", parameterToString(*r.limit, "")) + } + // to determine the Content-Type header + localVarHTTPContentTypes := []string{} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type OrganizationApiUpdateOfficeRequest struct { ctx context.Context ApiService *OrganizationApiService diff --git a/api_person.go b/api_person.go index 28ee03d3..5e1aa810 100644 --- a/api_person.go +++ b/api_person.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_profile.go b/api_profile.go index e2fc0807..ae3c59c1 100644 --- a/api_profile.go +++ b/api_profile.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_project.go b/api_project.go index 7b512050..fb33f82e 100644 --- a/api_project.go +++ b/api_project.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_search.go b/api_search.go index 10821f22..8580b5bd 100644 --- a/api_search.go +++ b/api_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_skill.go b/api_skill.go index 72626656..d28a4202 100644 --- a/api_skill.go +++ b/api_skill.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -2387,6 +2387,132 @@ func (a *SkillApiService) RemoveSkillFromParentSkillExecute(r SkillApiRemoveSkil return localVarReturnValue, localVarHTTPResponse, nil } +type SkillApiSearchAllSkillsRequest struct { + ctx context.Context + ApiService *SkillApiService + text string + skip *int32 + limit *int32 +} + +func (r SkillApiSearchAllSkillsRequest) Skip(skip int32) SkillApiSearchAllSkillsRequest { + r.skip = &skip + return r +} + +func (r SkillApiSearchAllSkillsRequest) Limit(limit int32) SkillApiSearchAllSkillsRequest { + r.limit = &limit + return r +} + +func (r SkillApiSearchAllSkillsRequest) Execute() (*PagedSkills, *http.Response, error) { + return r.ApiService.SearchAllSkillsExecute(r) +} + +/* +SearchAllSkills Fulltext search on all skills + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param text + @return SkillApiSearchAllSkillsRequest +*/ +func (a *SkillApiService) SearchAllSkills(ctx context.Context, text string) SkillApiSearchAllSkillsRequest { + return SkillApiSearchAllSkillsRequest{ + ApiService: a, + ctx: ctx, + text: text, + } +} + +// Execute executes the request +// @return PagedSkills +func (a *SkillApiService) SearchAllSkillsExecute(r SkillApiSearchAllSkillsRequest) (*PagedSkills, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodGet + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *PagedSkills + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "SkillApiService.SearchAllSkills") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/skills/search/{text}" + localVarPath = strings.Replace(localVarPath, "{"+"text"+"}", url.PathEscape(parameterToString(r.text, "")), -1) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + + if r.skip != nil { + localVarQueryParams.Add("skip", parameterToString(*r.skip, "")) + } + if r.limit != nil { + localVarQueryParams.Add("limit", parameterToString(*r.limit, "")) + } + // to determine the Content-Type header + localVarHTTPContentTypes := []string{} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + var v Error + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type SkillApiUpdatePersonProjectSkillRequest struct { ctx context.Context ApiService *SkillApiService diff --git a/api_status.go b/api_status.go index 4d01b780..9e63902c 100644 --- a/api_status.go +++ b/api_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_templates.go b/api_templates.go index 18131243..4dbf4605 100644 --- a/api_templates.go +++ b/api_templates.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/client.go b/client.go index f1d0a297..0509607e 100644 --- a/client.go +++ b/client.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( xmlCheck = regexp.MustCompile(`(?i:(?:application|text)/xml)`) ) -// APIClient manages communication with the YASM (Yet Another Skill Management) API API v1.4.5 +// APIClient manages communication with the YASM (Yet Another Skill Management) API API v1.4.6 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/configuration.go b/configuration.go index 3fa61f6b..398db521 100644 --- a/configuration.go +++ b/configuration.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/docs/CertificationApi.md b/docs/CertificationApi.md index 10ac69e1..65d8ad03 100644 --- a/docs/CertificationApi.md +++ b/docs/CertificationApi.md @@ -14,6 +14,7 @@ Method | HTTP request | Description [**GetCertifications**](CertificationApi.md#GetCertifications) | **Get** /certifications | Get a list of all Certifications independent of the Organization [**GetCertificationsForOrganization**](CertificationApi.md#GetCertificationsForOrganization) | **Get** /organizations/{organizationId}/certifications | Get a list of all certifications for a organization [**MoveCertification**](CertificationApi.md#MoveCertification) | **Put** /organizations/{organizationId}/certificates/{certificateId} | Move a Certification to an Organization +[**SearchAllCertifications**](CertificationApi.md#SearchAllCertifications) | **Get** /certifications/search/{text} | Fulltext search on all certifications [**SearchCertifications**](CertificationApi.md#SearchCertifications) | **Post** /certifications/search | Complex search over certification entities [**UpdateCertification**](CertificationApi.md#UpdateCertification) | **Put** /certifications/{certificationId} | Update a Certification [**UpdatePersonCertification**](CertificationApi.md#UpdatePersonCertification) | **Put** /persons/{personId}/certifications/{certificationId} | Update a Certification of a Person @@ -727,6 +728,78 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## SearchAllCertifications + +> PagedCertifications SearchAllCertifications(ctx, text).Skip(skip).Limit(limit).Execute() + +Fulltext search on all certifications + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "./openapi" +) + +func main() { + text := "text_example" // string | + skip := int32(0) // int32 | (optional) (default to 0) + limit := int32(20) // int32 | (optional) (default to 20) + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.CertificationApi.SearchAllCertifications(context.Background(), text).Skip(skip).Limit(limit).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `CertificationApi.SearchAllCertifications``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `SearchAllCertifications`: PagedCertifications + fmt.Fprintf(os.Stdout, "Response from `CertificationApi.SearchAllCertifications`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**text** | **string** | | + +### Other Parameters + +Other parameters are passed through a pointer to a apiSearchAllCertificationsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + + **skip** | **int32** | | [default to 0] + **limit** | **int32** | | [default to 20] + +### Return type + +[**PagedCertifications**](PagedCertifications.md) + +### Authorization + +[bearerAuth](../README.md#bearerAuth) + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## SearchCertifications > PagedCertifications SearchCertifications(ctx).CertificationSearch(certificationSearch).Skip(skip).Limit(limit).Execute() diff --git a/docs/IndustryApi.md b/docs/IndustryApi.md index eb055a7c..8ae6b20d 100644 --- a/docs/IndustryApi.md +++ b/docs/IndustryApi.md @@ -10,6 +10,7 @@ Method | HTTP request | Description [**DetachOrganizationFromIndustry**](IndustryApi.md#DetachOrganizationFromIndustry) | **Delete** /organizations/{organizationId}/industries/{industryId} | Remove an Organization to an Industry [**GetIndustries**](IndustryApi.md#GetIndustries) | **Get** /industries | Get all Industries [**GetIndustry**](IndustryApi.md#GetIndustry) | **Get** /industries/{industryId} | Get details about an Industry +[**SearchAllIndustries**](IndustryApi.md#SearchAllIndustries) | **Get** /industries/search/{text} | Fulltext search on all industries [**UpdateIndustry**](IndustryApi.md#UpdateIndustry) | **Put** /industries/{industryId} | Update an Industry @@ -422,6 +423,78 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## SearchAllIndustries + +> PagedIndustries SearchAllIndustries(ctx, text).Skip(skip).Limit(limit).Execute() + +Fulltext search on all industries + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "./openapi" +) + +func main() { + text := "text_example" // string | + skip := int32(0) // int32 | (optional) (default to 0) + limit := int32(20) // int32 | (optional) (default to 20) + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.IndustryApi.SearchAllIndustries(context.Background(), text).Skip(skip).Limit(limit).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `IndustryApi.SearchAllIndustries``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `SearchAllIndustries`: PagedIndustries + fmt.Fprintf(os.Stdout, "Response from `IndustryApi.SearchAllIndustries`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**text** | **string** | | + +### Other Parameters + +Other parameters are passed through a pointer to a apiSearchAllIndustriesRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + + **skip** | **int32** | | [default to 0] + **limit** | **int32** | | [default to 20] + +### Return type + +[**PagedIndustries**](PagedIndustries.md) + +### Authorization + +[bearerAuth](../README.md#bearerAuth) + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## UpdateIndustry > IndustryDetails UpdateIndustry(ctx, industryId).Industry(industry).Execute() diff --git a/docs/OrganizationApi.md b/docs/OrganizationApi.md index da394630..ceb7657d 100644 --- a/docs/OrganizationApi.md +++ b/docs/OrganizationApi.md @@ -19,6 +19,7 @@ Method | HTTP request | Description [**GetOrganizations**](OrganizationApi.md#GetOrganizations) | **Get** /organizations | Get a list of all Organizations [**MergeOrganizations**](OrganizationApi.md#MergeOrganizations) | **Put** /organizations/{organizationId}/merge/{otherOrganizationId} | Merge two organizations [**MoveCertification**](OrganizationApi.md#MoveCertification) | **Put** /organizations/{organizationId}/certificates/{certificateId} | Move a Certification to an Organization +[**SearchAllOrganizations**](OrganizationApi.md#SearchAllOrganizations) | **Get** /organizations/search/{text} | Fulltext search on all organizations [**UpdateOffice**](OrganizationApi.md#UpdateOffice) | **Put** /organizations/{organizationId}/offices/{officeId} | Update an Office for an Organization [**UpdateOrganization**](OrganizationApi.md#UpdateOrganization) | **Put** /organizations/{organizationId} | Update an Organization [**UpdateProjectOrganization**](OrganizationApi.md#UpdateProjectOrganization) | **Put** /organizations/{organizationId}/projects/{projectId} | project is now point to the new organization @@ -1071,6 +1072,78 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## SearchAllOrganizations + +> PagedOrganizations SearchAllOrganizations(ctx, text).Skip(skip).Limit(limit).Execute() + +Fulltext search on all organizations + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "./openapi" +) + +func main() { + text := "text_example" // string | + skip := int32(0) // int32 | (optional) (default to 0) + limit := int32(20) // int32 | (optional) (default to 20) + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.OrganizationApi.SearchAllOrganizations(context.Background(), text).Skip(skip).Limit(limit).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `OrganizationApi.SearchAllOrganizations``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `SearchAllOrganizations`: PagedOrganizations + fmt.Fprintf(os.Stdout, "Response from `OrganizationApi.SearchAllOrganizations`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**text** | **string** | | + +### Other Parameters + +Other parameters are passed through a pointer to a apiSearchAllOrganizationsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + + **skip** | **int32** | | [default to 0] + **limit** | **int32** | | [default to 20] + +### Return type + +[**PagedOrganizations**](PagedOrganizations.md) + +### Authorization + +[bearerAuth](../README.md#bearerAuth) + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## UpdateOffice > Office UpdateOffice(ctx, organizationId, officeId).Office(office).Execute() diff --git a/docs/SkillApi.md b/docs/SkillApi.md index a09a26a7..256d51c1 100644 --- a/docs/SkillApi.md +++ b/docs/SkillApi.md @@ -24,6 +24,7 @@ Method | HTTP request | Description [**GetSkills**](SkillApi.md#GetSkills) | **Get** /skills | Get a list of all skills, optionally only root, optionally only kinds [**MergeSkills**](SkillApi.md#MergeSkills) | **Put** /skills/{skillId}/merge/{otherSkillId} | Merge two skills [**RemoveSkillFromParentSkill**](SkillApi.md#RemoveSkillFromParentSkill) | **Delete** /skills/{skillId}/parents/{parentSkillId} | Detaches a Skill from parent Skill, return the parent Skill +[**SearchAllSkills**](SkillApi.md#SearchAllSkills) | **Get** /skills/search/{text} | Fulltext search on all skills [**UpdatePersonProjectSkill**](SkillApi.md#UpdatePersonProjectSkill) | **Put** /persons/{personId}/projects/{projectId}/skills/{skillId} | Update the level of a Skill in a Project participation [**UpdatePersonSkillExperience**](SkillApi.md#UpdatePersonSkillExperience) | **Put** /persons/{personId}/experiences/skills/{skillId} | Edit an Skill experience to a Person [**UpdatePersonSkillExperiences**](SkillApi.md#UpdatePersonSkillExperiences) | **Put** /persons/{personId}/experiences | Edit an Skill experience to a Person @@ -1465,6 +1466,78 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## SearchAllSkills + +> PagedSkills SearchAllSkills(ctx, text).Skip(skip).Limit(limit).Execute() + +Fulltext search on all skills + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "./openapi" +) + +func main() { + text := "text_example" // string | + skip := int32(0) // int32 | (optional) (default to 0) + limit := int32(20) // int32 | (optional) (default to 20) + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.SkillApi.SearchAllSkills(context.Background(), text).Skip(skip).Limit(limit).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `SkillApi.SearchAllSkills``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `SearchAllSkills`: PagedSkills + fmt.Fprintf(os.Stdout, "Response from `SkillApi.SearchAllSkills`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**text** | **string** | | + +### Other Parameters + +Other parameters are passed through a pointer to a apiSearchAllSkillsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + + **skip** | **int32** | | [default to 0] + **limit** | **int32** | | [default to 20] + +### Return type + +[**PagedSkills**](PagedSkills.md) + +### Authorization + +[bearerAuth](../README.md#bearerAuth) + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## UpdatePersonProjectSkill > ProjectParticipation UpdatePersonProjectSkill(ctx, personId, projectId, skillId).Level(level).Execute() diff --git a/model_abstract_entity_filter.go b/model_abstract_entity_filter.go index 598cd778..86d02a92 100644 --- a/model_abstract_entity_filter.go +++ b/model_abstract_entity_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability.go b/model_availability.go index 68aa90c6..c48ed66c 100644 --- a/model_availability.go +++ b/model_availability.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_all_of.go b/model_availability_all_of.go index 0fe4fbbc..bdb13f92 100644 --- a/model_availability_all_of.go +++ b/model_availability_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_detail.go b/model_availability_detail.go index 37d48d25..23ddca32 100644 --- a/model_availability_detail.go +++ b/model_availability_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_filter.go b/model_availability_filter.go index 8a396d1e..0a9b791c 100644 --- a/model_availability_filter.go +++ b/model_availability_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_basic_domain_model.go b/model_basic_domain_model.go index 10667410..ea3c2ff9 100644 --- a/model_basic_domain_model.go +++ b/model_basic_domain_model.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification.go b/model_certification.go index 084792c4..3e44a367 100644 --- a/model_certification.go +++ b/model_certification.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification_all_of.go b/model_certification_all_of.go index 2911b654..01ee3ac7 100644 --- a/model_certification_all_of.go +++ b/model_certification_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification_details.go b/model_certification_details.go index aaace7e9..5528541a 100644 --- a/model_certification_details.go +++ b/model_certification_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification_search.go b/model_certification_search.go index dbf8ea52..64f76659 100644 --- a/model_certification_search.go +++ b/model_certification_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country.go b/model_country.go index 0d7a70f4..182b2e40 100644 --- a/model_country.go +++ b/model_country.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country_all_of.go b/model_country_all_of.go index dd3a9fe1..c11af02f 100644 --- a/model_country_all_of.go +++ b/model_country_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country_details.go b/model_country_details.go index 627d119b..7f954899 100644 --- a/model_country_details.go +++ b/model_country_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_descriptable.go b/model_descriptable.go index 6013cd88..a214d94f 100644 --- a/model_descriptable.go +++ b/model_descriptable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_entity_filter.go b/model_entity_filter.go index 26933551..a12ffc95 100644 --- a/model_entity_filter.go +++ b/model_entity_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_error.go b/model_error.go index c842b144..9b111b8e 100644 --- a/model_error.go +++ b/model_error.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience.go b/model_experience.go index a0f7b738..37bae7b1 100644 --- a/model_experience.go +++ b/model_experience.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience_skill.go b/model_experience_skill.go index 2f82c840..54599317 100644 --- a/model_experience_skill.go +++ b/model_experience_skill.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience_skill_all_of.go b/model_experience_skill_all_of.go index e28d27bf..a3652d4a 100644 --- a/model_experience_skill_all_of.go +++ b/model_experience_skill_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience_skill_group.go b/model_experience_skill_group.go index 5f8af1f6..8e46c968 100644 --- a/model_experience_skill_group.go +++ b/model_experience_skill_group.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_geolocation.go b/model_geolocation.go index 309f2cd2..483a5f01 100644 --- a/model_geolocation.go +++ b/model_geolocation.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_industry.go b/model_industry.go index 07a51759..d0e97825 100644 --- a/model_industry.go +++ b/model_industry.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_industry_details.go b/model_industry_details.go index 9ae12043..09a085f2 100644 --- a/model_industry_details.go +++ b/model_industry_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language.go b/model_language.go index 80b2b96f..c45d5ed8 100644 --- a/model_language.go +++ b/model_language.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language_all_of.go b/model_language_all_of.go index 6521c70b..946ea891 100644 --- a/model_language_all_of.go +++ b/model_language_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language_details.go b/model_language_details.go index ad1fa7e0..dcde71ce 100644 --- a/model_language_details.go +++ b/model_language_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language_level.go b/model_language_level.go index 7470326b..7e0aaa98 100644 --- a/model_language_level.go +++ b/model_language_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_level.go b/model_level.go index 1bd5928e..5f0a13b2 100644 --- a/model_level.go +++ b/model_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_linkable.go b/model_linkable.go index a552e8d1..7b1a8d58 100644 --- a/model_linkable.go +++ b/model_linkable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_locateable.go b/model_locateable.go index 33640b51..848251e4 100644 --- a/model_locateable.go +++ b/model_locateable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_min_max.go b/model_min_max.go index 62e4e75a..a45f962f 100644 --- a/model_min_max.go +++ b/model_min_max.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_min_max_percent.go b/model_min_max_percent.go index 09880f10..ed37fc60 100644 --- a/model_min_max_percent.go +++ b/model_min_max_percent.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_nameable.go b/model_nameable.go index b84b1b43..cbfaa01f 100644 --- a/model_nameable.go +++ b/model_nameable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_named_domain_model.go b/model_named_domain_model.go index 273af636..cb4faec8 100644 --- a/model_named_domain_model.go +++ b/model_named_domain_model.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_office.go b/model_office.go index 424312cc..0de2ed20 100644 --- a/model_office.go +++ b/model_office.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization.go b/model_organization.go index 910c004a..f6820b00 100644 --- a/model_organization.go +++ b/model_organization.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization_all_of.go b/model_organization_all_of.go index 7af04eda..9a9f36b4 100644 --- a/model_organization_all_of.go +++ b/model_organization_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization_details.go b/model_organization_details.go index 01e378dd..f642afe2 100644 --- a/model_organization_details.go +++ b/model_organization_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_page.go b/model_page.go index ab76fd9f..ae92ebe8 100644 --- a/model_page.go +++ b/model_page.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_availabilities.go b/model_paged_availabilities.go index 8bfb16b6..09f8f631 100644 --- a/model_paged_availabilities.go +++ b/model_paged_availabilities.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_availabilities_all_of.go b/model_paged_availabilities_all_of.go index 4eb28a94..76d65ef7 100644 --- a/model_paged_availabilities_all_of.go +++ b/model_paged_availabilities_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_certifications.go b/model_paged_certifications.go index 3d2ce569..0986f298 100644 --- a/model_paged_certifications.go +++ b/model_paged_certifications.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_certifications_all_of.go b/model_paged_certifications_all_of.go index 8f560b63..576a95a3 100644 --- a/model_paged_certifications_all_of.go +++ b/model_paged_certifications_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_countries.go b/model_paged_countries.go index 008dfcf0..66881f36 100644 --- a/model_paged_countries.go +++ b/model_paged_countries.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_countries_all_of.go b/model_paged_countries_all_of.go index feb42568..76816dc2 100644 --- a/model_paged_countries_all_of.go +++ b/model_paged_countries_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_industries.go b/model_paged_industries.go index 03413973..fb467a67 100644 --- a/model_paged_industries.go +++ b/model_paged_industries.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_industries_all_of.go b/model_paged_industries_all_of.go index 06f3d7ba..1642b735 100644 --- a/model_paged_industries_all_of.go +++ b/model_paged_industries_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_languages.go b/model_paged_languages.go index ebdb576c..f0fbdf95 100644 --- a/model_paged_languages.go +++ b/model_paged_languages.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_languages_all_of.go b/model_paged_languages_all_of.go index 3ce8b303..ed0ed6e6 100644 --- a/model_paged_languages_all_of.go +++ b/model_paged_languages_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_offices.go b/model_paged_offices.go index c70e7073..4161a97b 100644 --- a/model_paged_offices.go +++ b/model_paged_offices.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_offices_all_of.go b/model_paged_offices_all_of.go index c7140dda..66f45d18 100644 --- a/model_paged_offices_all_of.go +++ b/model_paged_offices_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_organizations.go b/model_paged_organizations.go index b78b34d5..50b70f94 100644 --- a/model_paged_organizations.go +++ b/model_paged_organizations.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_organizations_all_of.go b/model_paged_organizations_all_of.go index b8143362..0a00c56e 100644 --- a/model_paged_organizations_all_of.go +++ b/model_paged_organizations_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_persons.go b/model_paged_persons.go index dc2d1e94..ee4b05d0 100644 --- a/model_paged_persons.go +++ b/model_paged_persons.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_persons_all_of.go b/model_paged_persons_all_of.go index e911cb3d..28da9569 100644 --- a/model_paged_persons_all_of.go +++ b/model_paged_persons_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_profiles.go b/model_paged_profiles.go index ca58e3df..cdca77fa 100644 --- a/model_paged_profiles.go +++ b/model_paged_profiles.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_profiles_all_of.go b/model_paged_profiles_all_of.go index d8f97314..af028f31 100644 --- a/model_paged_profiles_all_of.go +++ b/model_paged_profiles_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_project_participations.go b/model_paged_project_participations.go index ac76f96e..d3437f65 100644 --- a/model_paged_project_participations.go +++ b/model_paged_project_participations.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_project_participations_all_of.go b/model_paged_project_participations_all_of.go index 92e2d146..a17c099d 100644 --- a/model_paged_project_participations_all_of.go +++ b/model_paged_project_participations_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_projects.go b/model_paged_projects.go index 0a8453c1..c0928102 100644 --- a/model_paged_projects.go +++ b/model_paged_projects.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_projects_all_of.go b/model_paged_projects_all_of.go index 9384c0df..09c27d78 100644 --- a/model_paged_projects_all_of.go +++ b/model_paged_projects_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_skills.go b/model_paged_skills.go index 9396fc9a..78b7ca97 100644 --- a/model_paged_skills.go +++ b/model_paged_skills.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_skills_all_of.go b/model_paged_skills_all_of.go index 720ab9b9..2ca97129 100644 --- a/model_paged_skills_all_of.go +++ b/model_paged_skills_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person.go b/model_person.go index 4c2b121c..b198adac 100644 --- a/model_person.go +++ b/model_person.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_all_of.go b/model_person_all_of.go index f6fbde98..97681544 100644 --- a/model_person_all_of.go +++ b/model_person_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_certification_filter.go b/model_person_certification_filter.go index a34e3949..d0571524 100644 --- a/model_person_certification_filter.go +++ b/model_person_certification_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_certification_filter_all_of.go b/model_person_certification_filter_all_of.go index 93623b39..f3a6766b 100644 --- a/model_person_certification_filter_all_of.go +++ b/model_person_certification_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_details.go b/model_person_details.go index 73db1b71..39608fcb 100644 --- a/model_person_details.go +++ b/model_person_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_industry_filter.go b/model_person_industry_filter.go index b4c67aa5..0034ea08 100644 --- a/model_person_industry_filter.go +++ b/model_person_industry_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_industry_filter_all_of.go b/model_person_industry_filter_all_of.go index 41754449..8b7b125b 100644 --- a/model_person_industry_filter_all_of.go +++ b/model_person_industry_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_organization_filter.go b/model_person_organization_filter.go index 620f182f..cd091fe9 100644 --- a/model_person_organization_filter.go +++ b/model_person_organization_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_organization_filter_all_of.go b/model_person_organization_filter_all_of.go index 1df7547d..21577146 100644 --- a/model_person_organization_filter_all_of.go +++ b/model_person_organization_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_project_filter.go b/model_person_project_filter.go index f79f8570..8cfcd535 100644 --- a/model_person_project_filter.go +++ b/model_person_project_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_project_filter_all_of.go b/model_person_project_filter_all_of.go index 779c1cef..abde098b 100644 --- a/model_person_project_filter_all_of.go +++ b/model_person_project_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_score_detail.go b/model_person_score_detail.go index bbc5fb07..e0141efa 100644 --- a/model_person_score_detail.go +++ b/model_person_score_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_search.go b/model_person_search.go index 780896b8..3fc4efb9 100644 --- a/model_person_search.go +++ b/model_person_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_skill_filter.go b/model_person_skill_filter.go index 3d7c675b..28d9f9ab 100644 --- a/model_person_skill_filter.go +++ b/model_person_skill_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_skill_filter_all_of.go b/model_person_skill_filter_all_of.go index 4f7a3efc..c65ccc31 100644 --- a/model_person_skill_filter_all_of.go +++ b/model_person_skill_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_profile.go b/model_profile.go index 690b740a..d3253f38 100644 --- a/model_profile.go +++ b/model_profile.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_profile_details.go b/model_profile_details.go index f75aa74f..8d25506a 100644 --- a/model_profile_details.go +++ b/model_profile_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project.go b/model_project.go index 91da7edd..4fec6843 100644 --- a/model_project.go +++ b/model_project.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_all_of.go b/model_project_all_of.go index 77b0e0fb..8ece6c51 100644 --- a/model_project_all_of.go +++ b/model_project_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_details.go b/model_project_details.go index 7e1db7e8..46331181 100644 --- a/model_project_details.go +++ b/model_project_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation.go b/model_project_participation.go index c642aa4b..d2b90b6f 100644 --- a/model_project_participation.go +++ b/model_project_participation.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_all_of.go b/model_project_participation_all_of.go index 93cefca8..b88d476c 100644 --- a/model_project_participation_all_of.go +++ b/model_project_participation_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_search.go b/model_project_participation_search.go index 8b56628a..76dac0b5 100644 --- a/model_project_participation_search.go +++ b/model_project_participation_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_update.go b/model_project_participation_update.go index 60153a08..acffd022 100644 --- a/model_project_participation_update.go +++ b/model_project_participation_update.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_score_detail.go b/model_project_score_detail.go index b10b9bc8..07514fbe 100644 --- a/model_project_score_detail.go +++ b/model_project_score_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_score_detail_all_of.go b/model_project_score_detail_all_of.go index 6711149c..b1599433 100644 --- a/model_project_score_detail_all_of.go +++ b/model_project_score_detail_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_search.go b/model_project_search.go index d03d59ee..97e22b32 100644 --- a/model_project_search.go +++ b/model_project_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_status.go b/model_project_status.go index 1ab1cf8e..40f97ece 100644 --- a/model_project_status.go +++ b/model_project_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_type.go b/model_project_type.go index dc137834..e6d2ec74 100644 --- a/model_project_type.go +++ b/model_project_type.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result.go b/model_search_result.go index e6ed5add..d90a9d83 100644 --- a/model_search_result.go +++ b/model_search_result.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result_all_of.go b/model_search_result_all_of.go index d63e5f7b..b151a1e0 100644 --- a/model_search_result_all_of.go +++ b/model_search_result_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result_item.go b/model_search_result_item.go index 9c4d1607..52e67b8b 100644 --- a/model_search_result_item.go +++ b/model_search_result_item.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_seniority.go b/model_seniority.go index 5790bd03..92794ba2 100644 --- a/model_seniority.go +++ b/model_seniority.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill.go b/model_skill.go index 7bae5de6..5c7cbad7 100644 --- a/model_skill.go +++ b/model_skill.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_all_of.go b/model_skill_all_of.go index 14f1f202..8d797d43 100644 --- a/model_skill_all_of.go +++ b/model_skill_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_details.go b/model_skill_details.go index 7884648f..ea68c301 100644 --- a/model_skill_details.go +++ b/model_skill_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_group.go b/model_skill_group.go index 87a9758f..f02098d7 100644 --- a/model_skill_group.go +++ b/model_skill_group.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_level.go b/model_skill_level.go index 37836dac..33519f1b 100644 --- a/model_skill_level.go +++ b/model_skill_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_level_update.go b/model_skill_level_update.go index 9bcbb0ad..2d78fe51 100644 --- a/model_skill_level_update.go +++ b/model_skill_level_update.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_status.go b/model_status.go index a4952144..f8d0ee62 100644 --- a/model_status.go +++ b/model_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_suggestable.go b/model_suggestable.go index ec023485..3b4c9523 100644 --- a/model_suggestable.go +++ b/model_suggestable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_synonymable.go b/model_synonymable.go index 932584bb..6b6a7bf7 100644 --- a/model_synonymable.go +++ b/model_synonymable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_timeframed.go b/model_timeframed.go index 76236170..03a29689 100644 --- a/model_timeframed.go +++ b/model_timeframed.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_version.go b/model_version.go index 821164b9..06aaecfc 100644 --- a/model_version.go +++ b/model_version.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/response.go b/response.go index 97279e5b..9c23dbaf 100644 --- a/response.go +++ b/response.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/utils.go b/utils.go index 404b5ded..7beadf24 100644 --- a/utils.go +++ b/utils.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.4.5 +API version: 1.4.6 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.