From e2d3ad3a4e840c4e9f9a4c71334d4a45ea93b59c Mon Sep 17 00:00:00 2001 From: Vernon Keenan Date: Tue, 12 Sep 2023 03:42:13 +0000 Subject: [PATCH] First commit --- .gitignore | 20 + .vscode/settings.json | 3 + LICENSE | 9 + Makefile | 52 + README.md | 27 + api/auth/auth_client/auth_client.go | 116 + .../auth_client/user/get_users_parameters.go | 167 + .../auth_client/user/get_users_responses.go | 477 ++ api/auth/auth_client/user/user_client.go | 86 + api/auth/auth_models/address.go | 72 + api/auth/auth_models/error.go | 60 + api/auth/auth_models/response_meta.go | 84 + api/auth/auth_models/tenant_user.go | 99 + api/auth/auth_models/user.go | 388 ++ api/auth/auth_models/user_response.go | 166 + api/auth/auth_models/user_role.go | 90 + app/address.go | 20 + app/auth.go | 39 + app/config.go | 237 + app/force.go | 26 + app/logger/logger.go | 43 + app/mysql.go | 29 + app/prometheus.go | 67 + app/root.go | 50 + app/service-helpers.go | 157 + app/tenantuser.go | 31 + app/user-helpers.go | 134 + app/user.go | 78 + app/userrole.go | 28 + build/COPYRIGHT | 3 + go.mod | 32 + go.sum | 1528 +++++ swagger/auth-vernonkeenan.yaml | 433 ++ swagger/defs/account-basic.yaml | 134 + swagger/defs/account.yaml | 221 + swagger/defs/address.yaml | 31 + swagger/defs/asset.yaml | 184 + swagger/defs/attendee.yaml | 22 + swagger/defs/certificate.yaml | 29 + swagger/defs/cluster.yaml | 70 + swagger/defs/company-product.yaml | 84 + swagger/defs/company-service.yaml | 78 + swagger/defs/company.yaml | 177 + swagger/defs/contact.yaml | 165 + swagger/defs/contract.yaml | 124 + swagger/defs/course-lesson.yaml | 47 + swagger/defs/course-section.yaml | 45 + swagger/defs/course.yaml | 51 + swagger/defs/database.yaml | 55 + swagger/defs/delete-response.yaml | 9 + swagger/defs/document.yaml | 90 + swagger/defs/email-message.yaml | 71 + swagger/defs/enrollment.yaml | 29 + swagger/defs/error.yaml | 10 + swagger/defs/event-category.yaml | 35 + swagger/defs/event.yaml | 64 + swagger/defs/factor.yaml | 44 + swagger/defs/favorite.yaml | 38 + swagger/defs/financial-statement.yaml | 52 + swagger/defs/headers.yaml | 11 + swagger/defs/industry-company.yaml | 25 + swagger/defs/industry-product.yaml | 33 + swagger/defs/industry-service.yaml | 33 + swagger/defs/industry.yaml | 83 + swagger/defs/invalid-error.yaml | 9 + swagger/defs/invoice.yaml | 40 + swagger/defs/issued-certificate.yaml | 35 + swagger/defs/lead.yaml | 113 + swagger/defs/lesson-progress.yaml | 31 + swagger/defs/message.yaml | 10 + swagger/defs/observation.yaml | 47 + swagger/defs/order.yaml | 29 + swagger/defs/outgoing-email-message.yaml | 81 + swagger/defs/pagination.yaml | 15 + swagger/defs/payment-method.yaml | 35 + swagger/defs/prompt-answer.yaml | 67 + swagger/defs/prompt-category.yaml | 27 + swagger/defs/prompt-tag.yaml | 27 + swagger/defs/prompt.yaml | 107 + swagger/defs/request-meta.yaml | 8 + swagger/defs/research-project-company.yaml | 26 + swagger/defs/research-project-document.yaml | 32 + swagger/defs/research-project-product.yaml | 32 + swagger/defs/research-project-service.yaml | 32 + swagger/defs/research-project-topic.yaml | 29 + swagger/defs/research-project.yaml | 64 + swagger/defs/response-meta.yaml | 38 + swagger/defs/role.yaml | 39 + swagger/defs/template.yaml | 62 + swagger/defs/tenant-user.yaml | 68 + swagger/defs/tenant.yaml | 62 + swagger/defs/ticket.yaml | 22 + swagger/defs/topic.yaml | 45 + swagger/defs/transaction.yaml | 40 + swagger/defs/user-role.yaml | 56 + swagger/defs/user.yaml | 243 + swagger/external/auth-vernonkeenan.yaml | 433 ++ swagger/external/crm-vernonkeenan.yaml | 822 +++ swagger/external/devops-vernonkeenan.yaml | 1820 ++++++ swagger/external/members-vernonkeenan.yaml | 3826 ++++++++++++ swagger/external/plex-vernonkeenan.yaml | 596 ++ swagger/external/research-vernonkeenan.yaml | 2019 ++++++ swagger/external/sf-gate-vernonkeenan.yaml | 5552 +++++++++++++++++ swagger/external/stash-vernonkeenan.yaml | 215 + 104 files changed, 23849 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 README.md create mode 100644 api/auth/auth_client/auth_client.go create mode 100644 api/auth/auth_client/user/get_users_parameters.go create mode 100644 api/auth/auth_client/user/get_users_responses.go create mode 100644 api/auth/auth_client/user/user_client.go create mode 100644 api/auth/auth_models/address.go create mode 100644 api/auth/auth_models/error.go create mode 100644 api/auth/auth_models/response_meta.go create mode 100644 api/auth/auth_models/tenant_user.go create mode 100644 api/auth/auth_models/user.go create mode 100644 api/auth/auth_models/user_response.go create mode 100644 api/auth/auth_models/user_role.go create mode 100644 app/address.go create mode 100644 app/auth.go create mode 100644 app/config.go create mode 100644 app/force.go create mode 100644 app/logger/logger.go create mode 100644 app/mysql.go create mode 100644 app/prometheus.go create mode 100644 app/root.go create mode 100644 app/service-helpers.go create mode 100644 app/tenantuser.go create mode 100644 app/user-helpers.go create mode 100644 app/user.go create mode 100644 app/userrole.go create mode 100644 build/COPYRIGHT create mode 100644 go.mod create mode 100644 go.sum create mode 100644 swagger/auth-vernonkeenan.yaml create mode 100644 swagger/defs/account-basic.yaml create mode 100644 swagger/defs/account.yaml create mode 100644 swagger/defs/address.yaml create mode 100644 swagger/defs/asset.yaml create mode 100644 swagger/defs/attendee.yaml create mode 100644 swagger/defs/certificate.yaml create mode 100644 swagger/defs/cluster.yaml create mode 100644 swagger/defs/company-product.yaml create mode 100644 swagger/defs/company-service.yaml create mode 100644 swagger/defs/company.yaml create mode 100644 swagger/defs/contact.yaml create mode 100644 swagger/defs/contract.yaml create mode 100644 swagger/defs/course-lesson.yaml create mode 100644 swagger/defs/course-section.yaml create mode 100644 swagger/defs/course.yaml create mode 100644 swagger/defs/database.yaml create mode 100644 swagger/defs/delete-response.yaml create mode 100644 swagger/defs/document.yaml create mode 100644 swagger/defs/email-message.yaml create mode 100644 swagger/defs/enrollment.yaml create mode 100644 swagger/defs/error.yaml create mode 100644 swagger/defs/event-category.yaml create mode 100644 swagger/defs/event.yaml create mode 100644 swagger/defs/factor.yaml create mode 100644 swagger/defs/favorite.yaml create mode 100644 swagger/defs/financial-statement.yaml create mode 100644 swagger/defs/headers.yaml create mode 100644 swagger/defs/industry-company.yaml create mode 100644 swagger/defs/industry-product.yaml create mode 100644 swagger/defs/industry-service.yaml create mode 100644 swagger/defs/industry.yaml create mode 100644 swagger/defs/invalid-error.yaml create mode 100644 swagger/defs/invoice.yaml create mode 100644 swagger/defs/issued-certificate.yaml create mode 100644 swagger/defs/lead.yaml create mode 100644 swagger/defs/lesson-progress.yaml create mode 100644 swagger/defs/message.yaml create mode 100644 swagger/defs/observation.yaml create mode 100644 swagger/defs/order.yaml create mode 100644 swagger/defs/outgoing-email-message.yaml create mode 100644 swagger/defs/pagination.yaml create mode 100644 swagger/defs/payment-method.yaml create mode 100644 swagger/defs/prompt-answer.yaml create mode 100644 swagger/defs/prompt-category.yaml create mode 100644 swagger/defs/prompt-tag.yaml create mode 100644 swagger/defs/prompt.yaml create mode 100644 swagger/defs/request-meta.yaml create mode 100644 swagger/defs/research-project-company.yaml create mode 100644 swagger/defs/research-project-document.yaml create mode 100644 swagger/defs/research-project-product.yaml create mode 100644 swagger/defs/research-project-service.yaml create mode 100644 swagger/defs/research-project-topic.yaml create mode 100644 swagger/defs/research-project.yaml create mode 100644 swagger/defs/response-meta.yaml create mode 100644 swagger/defs/role.yaml create mode 100644 swagger/defs/template.yaml create mode 100644 swagger/defs/tenant-user.yaml create mode 100644 swagger/defs/tenant.yaml create mode 100644 swagger/defs/ticket.yaml create mode 100644 swagger/defs/topic.yaml create mode 100644 swagger/defs/transaction.yaml create mode 100644 swagger/defs/user-role.yaml create mode 100644 swagger/defs/user.yaml create mode 100644 swagger/external/auth-vernonkeenan.yaml create mode 100644 swagger/external/crm-vernonkeenan.yaml create mode 100644 swagger/external/devops-vernonkeenan.yaml create mode 100644 swagger/external/members-vernonkeenan.yaml create mode 100644 swagger/external/plex-vernonkeenan.yaml create mode 100644 swagger/external/research-vernonkeenan.yaml create mode 100644 swagger/external/sf-gate-vernonkeenan.yaml create mode 100644 swagger/external/stash-vernonkeenan.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e88a88c --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, build with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out +*.log +/swagger/docs/* +/.sfdx/* +/swagger/apex/* +/swagger/mysql/* +/swagger/logs/* +/swagger/graphql/* + diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e3e5056 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "cSpell.words": ["Gitea", "taxnexus"] +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..55efce7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +Copyright (c) 2012-2022, Taxnexus, Inc. All rights reserved. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..87f5f9b --- /dev/null +++ b/Makefile @@ -0,0 +1,52 @@ + +.PHONY: swagger + +swagger: + cp ../auth/swagger/auth-work.yaml ./swagger + cp ../auth/swagger/auth-work.yaml ./swagger/external + cp ../workflow/swagger/workflow-work.yaml ./swagger + cp ../workflow/swagger/workflow-work.yaml ./swagger/external + # + rm -rf api + # + # generate auth client + # + mkdir -p api/auth + swagger generate client \ + --log-output=./swagger/logs/generate-auth-client.log \ + --copyright-file=./build/COPYRIGHT \ + --name=auth \ + --spec=./swagger/auth-work.yaml \ + --target=./api/auth \ + --client-package=auth-client \ + --model-package=auth-models \ + --principal=app.User + # + # update external auth client + # + sed -i 's|"http"|"https"|g' ./swagger/external/auth-work.yaml + sed -i 's|auth.work.com:8080|gw.tnxs.net|g' ./swagger/external/auth-work.yaml + sed -i 's|"/v1"|"/vk/auth/v1"|g' ./swagger/external/auth-work.yaml + # + # generate workflow client + # + mkdir api/workflow + swagger generate client \ + --log-output=./swagger/logs/generate-workflow-client.log \ + --copyright-file=./build/COPYRIGHT \ + --name=workflow \ + --spec=./swagger/workflow-work.yaml \ + --target=./api/workflow \ + --client-package=workflow-client \ + --model-package=workflow-models \ + --principal=app.User + # + # update external workflow client + # + sed -i 's|"http"|"https"|g' ./swagger/external/workflow-work.yaml + sed -i 's|workflow.work.com:8080|gw.tnxs.net|g' ./swagger/external/workflow-work.yaml + sed -i 's|"/v1"|"/vk/workflow/v1"|g' ./swagger/external/workflow-work.yaml + # + # copy external swagger files + # + scp ./swagger/external/*.yaml root@whm.noc.tnxs.net:/home/taxassets/www/swagger/external diff --git a/README.md b/README.md new file mode 100644 index 0000000..78b0758 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# lib + +vernonkeenan Shared Libraries (go) + +## Dependent Systems + +The Gitea server must be up and running with admin access. + +## Update Procedure + +Prerequisite: All the other repos are cloned locally in adjacent directories. + +* Increment branch number in local repo + +* Generate all OpenAPI libraries and then cleanup modules + +```bash +make swagger +go get -u -f ./... +go mod tidy +``` + +* Commit and push new branch to GitHub +* On GitHub goto set the new branch to default. +* On GitHub goto and publish a new release for the new branch. Make the new tag the branch name. +* On Gitea goto and click Synchronize Now. +* Update the ``go.mod`` line with ``code.tnxs.net/vernonkeenan/lib`` in each project to match the latest version. diff --git a/api/auth/auth_client/auth_client.go b/api/auth/auth_client/auth_client.go new file mode 100644 index 0000000..c0577d1 --- /dev/null +++ b/api/auth/auth_client/auth_client.go @@ -0,0 +1,116 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_client + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "github.com/go-openapi/runtime" + httptransport "github.com/go-openapi/runtime/client" + "github.com/go-openapi/strfmt" + + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_client/user" +) + +// Default auth HTTP client. +var Default = NewHTTPClient(nil) + +const ( + // DefaultHost is the default Host + // found in Meta (info) section of spec file + DefaultHost string = "auth.vernonkeenan.com:8080" + // DefaultBasePath is the default BasePath + // found in Meta (info) section of spec file + DefaultBasePath string = "/v1" +) + +// DefaultSchemes are the default schemes found in Meta (info) section of spec file +var DefaultSchemes = []string{"http"} + +// NewHTTPClient creates a new auth HTTP client. +func NewHTTPClient(formats strfmt.Registry) *Auth { + return NewHTTPClientWithConfig(formats, nil) +} + +// NewHTTPClientWithConfig creates a new auth HTTP client, +// using a customizable transport config. +func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Auth { + // ensure nullable parameters have default + if cfg == nil { + cfg = DefaultTransportConfig() + } + + // create transport and client + transport := httptransport.New(cfg.Host, cfg.BasePath, cfg.Schemes) + return New(transport, formats) +} + +// New creates a new auth client +func New(transport runtime.ClientTransport, formats strfmt.Registry) *Auth { + // ensure nullable parameters have default + if formats == nil { + formats = strfmt.Default + } + + cli := new(Auth) + cli.Transport = transport + cli.User = user.New(transport, formats) + return cli +} + +// DefaultTransportConfig creates a TransportConfig with the +// default settings taken from the meta section of the spec file. +func DefaultTransportConfig() *TransportConfig { + return &TransportConfig{ + Host: DefaultHost, + BasePath: DefaultBasePath, + Schemes: DefaultSchemes, + } +} + +// TransportConfig contains the transport related info, +// found in the meta section of the spec file. +type TransportConfig struct { + Host string + BasePath string + Schemes []string +} + +// WithHost overrides the default host, +// provided by the meta section of the spec file. +func (cfg *TransportConfig) WithHost(host string) *TransportConfig { + cfg.Host = host + return cfg +} + +// WithBasePath overrides the default basePath, +// provided by the meta section of the spec file. +func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig { + cfg.BasePath = basePath + return cfg +} + +// WithSchemes overrides the default schemes, +// provided by the meta section of the spec file. +func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig { + cfg.Schemes = schemes + return cfg +} + +// Auth is a client for auth +type Auth struct { + User user.ClientService + + Transport runtime.ClientTransport +} + +// SetTransport changes the transport on the client and all its subresources +func (c *Auth) SetTransport(transport runtime.ClientTransport) { + c.Transport = transport + c.User.SetTransport(transport) +} diff --git a/api/auth/auth_client/user/get_users_parameters.go b/api/auth/auth_client/user/get_users_parameters.go new file mode 100644 index 0000000..832d662 --- /dev/null +++ b/api/auth/auth_client/user/get_users_parameters.go @@ -0,0 +1,167 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package user + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + "net/http" + "time" + + "github.com/go-openapi/errors" + "github.com/go-openapi/runtime" + cr "github.com/go-openapi/runtime/client" + "github.com/go-openapi/strfmt" +) + +// NewGetUsersParams creates a new GetUsersParams object, +// with the default timeout for this client. +// +// Default values are not hydrated, since defaults are normally applied by the API server side. +// +// To enforce default values in parameter, use SetDefaults or WithDefaults. +func NewGetUsersParams() *GetUsersParams { + return &GetUsersParams{ + timeout: cr.DefaultTimeout, + } +} + +// NewGetUsersParamsWithTimeout creates a new GetUsersParams object +// with the ability to set a timeout on a request. +func NewGetUsersParamsWithTimeout(timeout time.Duration) *GetUsersParams { + return &GetUsersParams{ + timeout: timeout, + } +} + +// NewGetUsersParamsWithContext creates a new GetUsersParams object +// with the ability to set a context for a request. +func NewGetUsersParamsWithContext(ctx context.Context) *GetUsersParams { + return &GetUsersParams{ + Context: ctx, + } +} + +// NewGetUsersParamsWithHTTPClient creates a new GetUsersParams object +// with the ability to set a custom HTTPClient for a request. +func NewGetUsersParamsWithHTTPClient(client *http.Client) *GetUsersParams { + return &GetUsersParams{ + HTTPClient: client, + } +} + +/* +GetUsersParams contains all the parameters to send to the API endpoint + + for the get users operation. + + Typically these are written to a http.Request. +*/ +type GetUsersParams struct { + + /* Apikey. + + Service account or developer API key + */ + Apikey *string + + timeout time.Duration + Context context.Context + HTTPClient *http.Client +} + +// WithDefaults hydrates default values in the get users params (not the query body). +// +// All values with no default are reset to their zero value. +func (o *GetUsersParams) WithDefaults() *GetUsersParams { + o.SetDefaults() + return o +} + +// SetDefaults hydrates default values in the get users params (not the query body). +// +// All values with no default are reset to their zero value. +func (o *GetUsersParams) SetDefaults() { + // no default values defined for this parameter +} + +// WithTimeout adds the timeout to the get users params +func (o *GetUsersParams) WithTimeout(timeout time.Duration) *GetUsersParams { + o.SetTimeout(timeout) + return o +} + +// SetTimeout adds the timeout to the get users params +func (o *GetUsersParams) SetTimeout(timeout time.Duration) { + o.timeout = timeout +} + +// WithContext adds the context to the get users params +func (o *GetUsersParams) WithContext(ctx context.Context) *GetUsersParams { + o.SetContext(ctx) + return o +} + +// SetContext adds the context to the get users params +func (o *GetUsersParams) SetContext(ctx context.Context) { + o.Context = ctx +} + +// WithHTTPClient adds the HTTPClient to the get users params +func (o *GetUsersParams) WithHTTPClient(client *http.Client) *GetUsersParams { + o.SetHTTPClient(client) + return o +} + +// SetHTTPClient adds the HTTPClient to the get users params +func (o *GetUsersParams) SetHTTPClient(client *http.Client) { + o.HTTPClient = client +} + +// WithApikey adds the apikey to the get users params +func (o *GetUsersParams) WithApikey(apikey *string) *GetUsersParams { + o.SetApikey(apikey) + return o +} + +// SetApikey adds the apikey to the get users params +func (o *GetUsersParams) SetApikey(apikey *string) { + o.Apikey = apikey +} + +// WriteToRequest writes these params to a swagger request +func (o *GetUsersParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { + + if err := r.SetTimeout(o.timeout); err != nil { + return err + } + var res []error + + if o.Apikey != nil { + + // query param apikey + var qrApikey string + + if o.Apikey != nil { + qrApikey = *o.Apikey + } + qApikey := qrApikey + if qApikey != "" { + + if err := r.SetQueryParam("apikey", qApikey); err != nil { + return err + } + } + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} diff --git a/api/auth/auth_client/user/get_users_responses.go b/api/auth/auth_client/user/get_users_responses.go new file mode 100644 index 0000000..f6baf88 --- /dev/null +++ b/api/auth/auth_client/user/get_users_responses.go @@ -0,0 +1,477 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package user + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "fmt" + "io" + + "github.com/go-openapi/runtime" + "github.com/go-openapi/strfmt" + + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_models" +) + +// GetUsersReader is a Reader for the GetUsers structure. +type GetUsersReader struct { + formats strfmt.Registry +} + +// ReadResponse reads a server response into the received o. +func (o *GetUsersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { + switch response.Code() { + case 200: + result := NewGetUsersOK() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return result, nil + case 401: + result := NewGetUsersUnauthorized() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return nil, result + case 403: + result := NewGetUsersForbidden() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return nil, result + case 404: + result := NewGetUsersNotFound() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return nil, result + case 422: + result := NewGetUsersUnprocessableEntity() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return nil, result + case 500: + result := NewGetUsersInternalServerError() + if err := result.readResponse(response, consumer, o.formats); err != nil { + return nil, err + } + return nil, result + default: + return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code()) + } +} + +// NewGetUsersOK creates a GetUsersOK with default headers values +func NewGetUsersOK() *GetUsersOK { + return &GetUsersOK{} +} + +/* +GetUsersOK describes a response with status code 200, with default header values. + +Response with User objects +*/ +type GetUsersOK struct { + Payload *auth_models.UserResponse +} + +// IsSuccess returns true when this get users o k response has a 2xx status code +func (o *GetUsersOK) IsSuccess() bool { + return true +} + +// IsRedirect returns true when this get users o k response has a 3xx status code +func (o *GetUsersOK) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users o k response has a 4xx status code +func (o *GetUsersOK) IsClientError() bool { + return false +} + +// IsServerError returns true when this get users o k response has a 5xx status code +func (o *GetUsersOK) IsServerError() bool { + return false +} + +// IsCode returns true when this get users o k response a status code equal to that given +func (o *GetUsersOK) IsCode(code int) bool { + return code == 200 +} + +// Code gets the status code for the get users o k response +func (o *GetUsersOK) Code() int { + return 200 +} + +func (o *GetUsersOK) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersOK %+v", 200, o.Payload) +} + +func (o *GetUsersOK) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersOK %+v", 200, o.Payload) +} + +func (o *GetUsersOK) GetPayload() *auth_models.UserResponse { + return o.Payload +} + +func (o *GetUsersOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.UserResponse) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} + +// NewGetUsersUnauthorized creates a GetUsersUnauthorized with default headers values +func NewGetUsersUnauthorized() *GetUsersUnauthorized { + return &GetUsersUnauthorized{} +} + +/* +GetUsersUnauthorized describes a response with status code 401, with default header values. + +Access Unauthorized, invalid API-KEY was used +*/ +type GetUsersUnauthorized struct { + Payload *auth_models.Error +} + +// IsSuccess returns true when this get users unauthorized response has a 2xx status code +func (o *GetUsersUnauthorized) IsSuccess() bool { + return false +} + +// IsRedirect returns true when this get users unauthorized response has a 3xx status code +func (o *GetUsersUnauthorized) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users unauthorized response has a 4xx status code +func (o *GetUsersUnauthorized) IsClientError() bool { + return true +} + +// IsServerError returns true when this get users unauthorized response has a 5xx status code +func (o *GetUsersUnauthorized) IsServerError() bool { + return false +} + +// IsCode returns true when this get users unauthorized response a status code equal to that given +func (o *GetUsersUnauthorized) IsCode(code int) bool { + return code == 401 +} + +// Code gets the status code for the get users unauthorized response +func (o *GetUsersUnauthorized) Code() int { + return 401 +} + +func (o *GetUsersUnauthorized) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersUnauthorized %+v", 401, o.Payload) +} + +func (o *GetUsersUnauthorized) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersUnauthorized %+v", 401, o.Payload) +} + +func (o *GetUsersUnauthorized) GetPayload() *auth_models.Error { + return o.Payload +} + +func (o *GetUsersUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.Error) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} + +// NewGetUsersForbidden creates a GetUsersForbidden with default headers values +func NewGetUsersForbidden() *GetUsersForbidden { + return &GetUsersForbidden{} +} + +/* +GetUsersForbidden describes a response with status code 403, with default header values. + +Access forbidden, account lacks access +*/ +type GetUsersForbidden struct { + Payload *auth_models.Error +} + +// IsSuccess returns true when this get users forbidden response has a 2xx status code +func (o *GetUsersForbidden) IsSuccess() bool { + return false +} + +// IsRedirect returns true when this get users forbidden response has a 3xx status code +func (o *GetUsersForbidden) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users forbidden response has a 4xx status code +func (o *GetUsersForbidden) IsClientError() bool { + return true +} + +// IsServerError returns true when this get users forbidden response has a 5xx status code +func (o *GetUsersForbidden) IsServerError() bool { + return false +} + +// IsCode returns true when this get users forbidden response a status code equal to that given +func (o *GetUsersForbidden) IsCode(code int) bool { + return code == 403 +} + +// Code gets the status code for the get users forbidden response +func (o *GetUsersForbidden) Code() int { + return 403 +} + +func (o *GetUsersForbidden) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersForbidden %+v", 403, o.Payload) +} + +func (o *GetUsersForbidden) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersForbidden %+v", 403, o.Payload) +} + +func (o *GetUsersForbidden) GetPayload() *auth_models.Error { + return o.Payload +} + +func (o *GetUsersForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.Error) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} + +// NewGetUsersNotFound creates a GetUsersNotFound with default headers values +func NewGetUsersNotFound() *GetUsersNotFound { + return &GetUsersNotFound{} +} + +/* +GetUsersNotFound describes a response with status code 404, with default header values. + +Resource was not found +*/ +type GetUsersNotFound struct { + Payload *auth_models.Error +} + +// IsSuccess returns true when this get users not found response has a 2xx status code +func (o *GetUsersNotFound) IsSuccess() bool { + return false +} + +// IsRedirect returns true when this get users not found response has a 3xx status code +func (o *GetUsersNotFound) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users not found response has a 4xx status code +func (o *GetUsersNotFound) IsClientError() bool { + return true +} + +// IsServerError returns true when this get users not found response has a 5xx status code +func (o *GetUsersNotFound) IsServerError() bool { + return false +} + +// IsCode returns true when this get users not found response a status code equal to that given +func (o *GetUsersNotFound) IsCode(code int) bool { + return code == 404 +} + +// Code gets the status code for the get users not found response +func (o *GetUsersNotFound) Code() int { + return 404 +} + +func (o *GetUsersNotFound) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersNotFound %+v", 404, o.Payload) +} + +func (o *GetUsersNotFound) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersNotFound %+v", 404, o.Payload) +} + +func (o *GetUsersNotFound) GetPayload() *auth_models.Error { + return o.Payload +} + +func (o *GetUsersNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.Error) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} + +// NewGetUsersUnprocessableEntity creates a GetUsersUnprocessableEntity with default headers values +func NewGetUsersUnprocessableEntity() *GetUsersUnprocessableEntity { + return &GetUsersUnprocessableEntity{} +} + +/* +GetUsersUnprocessableEntity describes a response with status code 422, with default header values. + +Unprocessable Entity, likely a bad parameter +*/ +type GetUsersUnprocessableEntity struct { + Payload *auth_models.Error +} + +// IsSuccess returns true when this get users unprocessable entity response has a 2xx status code +func (o *GetUsersUnprocessableEntity) IsSuccess() bool { + return false +} + +// IsRedirect returns true when this get users unprocessable entity response has a 3xx status code +func (o *GetUsersUnprocessableEntity) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users unprocessable entity response has a 4xx status code +func (o *GetUsersUnprocessableEntity) IsClientError() bool { + return true +} + +// IsServerError returns true when this get users unprocessable entity response has a 5xx status code +func (o *GetUsersUnprocessableEntity) IsServerError() bool { + return false +} + +// IsCode returns true when this get users unprocessable entity response a status code equal to that given +func (o *GetUsersUnprocessableEntity) IsCode(code int) bool { + return code == 422 +} + +// Code gets the status code for the get users unprocessable entity response +func (o *GetUsersUnprocessableEntity) Code() int { + return 422 +} + +func (o *GetUsersUnprocessableEntity) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersUnprocessableEntity %+v", 422, o.Payload) +} + +func (o *GetUsersUnprocessableEntity) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersUnprocessableEntity %+v", 422, o.Payload) +} + +func (o *GetUsersUnprocessableEntity) GetPayload() *auth_models.Error { + return o.Payload +} + +func (o *GetUsersUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.Error) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} + +// NewGetUsersInternalServerError creates a GetUsersInternalServerError with default headers values +func NewGetUsersInternalServerError() *GetUsersInternalServerError { + return &GetUsersInternalServerError{} +} + +/* +GetUsersInternalServerError describes a response with status code 500, with default header values. + +Server Internal Error +*/ +type GetUsersInternalServerError struct { + Payload *auth_models.Error +} + +// IsSuccess returns true when this get users internal server error response has a 2xx status code +func (o *GetUsersInternalServerError) IsSuccess() bool { + return false +} + +// IsRedirect returns true when this get users internal server error response has a 3xx status code +func (o *GetUsersInternalServerError) IsRedirect() bool { + return false +} + +// IsClientError returns true when this get users internal server error response has a 4xx status code +func (o *GetUsersInternalServerError) IsClientError() bool { + return false +} + +// IsServerError returns true when this get users internal server error response has a 5xx status code +func (o *GetUsersInternalServerError) IsServerError() bool { + return true +} + +// IsCode returns true when this get users internal server error response a status code equal to that given +func (o *GetUsersInternalServerError) IsCode(code int) bool { + return code == 500 +} + +// Code gets the status code for the get users internal server error response +func (o *GetUsersInternalServerError) Code() int { + return 500 +} + +func (o *GetUsersInternalServerError) Error() string { + return fmt.Sprintf("[GET /users][%d] getUsersInternalServerError %+v", 500, o.Payload) +} + +func (o *GetUsersInternalServerError) String() string { + return fmt.Sprintf("[GET /users][%d] getUsersInternalServerError %+v", 500, o.Payload) +} + +func (o *GetUsersInternalServerError) GetPayload() *auth_models.Error { + return o.Payload +} + +func (o *GetUsersInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { + + o.Payload = new(auth_models.Error) + + // response payload + if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { + return err + } + + return nil +} diff --git a/api/auth/auth_client/user/user_client.go b/api/auth/auth_client/user/user_client.go new file mode 100644 index 0000000..2947766 --- /dev/null +++ b/api/auth/auth_client/user/user_client.go @@ -0,0 +1,86 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package user + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "fmt" + + "github.com/go-openapi/runtime" + "github.com/go-openapi/strfmt" +) + +// New creates a new user API client. +func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService { + return &Client{transport: transport, formats: formats} +} + +/* +Client for user API +*/ +type Client struct { + transport runtime.ClientTransport + formats strfmt.Registry +} + +// ClientOption is the option for Client methods +type ClientOption func(*runtime.ClientOperation) + +// ClientService is the interface for Client methods +type ClientService interface { + GetUsers(params *GetUsersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUsersOK, error) + + SetTransport(transport runtime.ClientTransport) +} + +/* +GetUsers checks API key + +Checks for a valid API key, and returns full user record +*/ +func (a *Client) GetUsers(params *GetUsersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUsersOK, error) { + // TODO: Validate the params before sending + if params == nil { + params = NewGetUsersParams() + } + op := &runtime.ClientOperation{ + ID: "getUsers", + Method: "GET", + PathPattern: "/users", + ProducesMediaTypes: []string{"application/json"}, + ConsumesMediaTypes: []string{"application/json"}, + Schemes: []string{"http"}, + Params: params, + Reader: &GetUsersReader{formats: a.formats}, + AuthInfo: authInfo, + Context: params.Context, + Client: params.HTTPClient, + } + for _, opt := range opts { + opt(op) + } + + result, err := a.transport.Submit(op) + if err != nil { + return nil, err + } + success, ok := result.(*GetUsersOK) + if ok { + return success, nil + } + // unexpected success response + // safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue + msg := fmt.Sprintf("unexpected success response for getUsers: API contract not enforced by server. Client expected to get an error, but got: %T", result) + panic(msg) +} + +// SetTransport changes the transport on the client +func (a *Client) SetTransport(transport runtime.ClientTransport) { + a.transport = transport +} diff --git a/api/auth/auth_models/address.go b/api/auth/auth_models/address.go new file mode 100644 index 0000000..aef6b16 --- /dev/null +++ b/api/auth/auth_models/address.go @@ -0,0 +1,72 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// Address address +// +// swagger:model Address +type Address struct { + + // City + City string `json:"City,omitempty"` + + // Country full name + Country string `json:"Country,omitempty"` + + // Country Code + CountryCode string `json:"CountryCode,omitempty"` + + // Postal Code + PostalCode string `json:"PostalCode,omitempty"` + + // State full name + State string `json:"State,omitempty"` + + // State Code + StateCode string `json:"StateCode,omitempty"` + + // Street number and name + Street string `json:"Street,omitempty"` +} + +// Validate validates this address +func (m *Address) Validate(formats strfmt.Registry) error { + return nil +} + +// ContextValidate validates this address based on context it is used +func (m *Address) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + return nil +} + +// MarshalBinary interface implementation +func (m *Address) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *Address) UnmarshalBinary(b []byte) error { + var res Address + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/error.go b/api/auth/auth_models/error.go new file mode 100644 index 0000000..7f83fe8 --- /dev/null +++ b/api/auth/auth_models/error.go @@ -0,0 +1,60 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// Error error +// +// swagger:model Error +type Error struct { + + // code + Code int32 `json:"Code,omitempty"` + + // fields + Fields string `json:"Fields,omitempty"` + + // message + Message string `json:"Message,omitempty"` +} + +// Validate validates this error +func (m *Error) Validate(formats strfmt.Registry) error { + return nil +} + +// ContextValidate validates this error based on context it is used +func (m *Error) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + return nil +} + +// MarshalBinary interface implementation +func (m *Error) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *Error) UnmarshalBinary(b []byte) error { + var res Error + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/response_meta.go b/api/auth/auth_models/response_meta.go new file mode 100644 index 0000000..1d1b1da --- /dev/null +++ b/api/auth/auth_models/response_meta.go @@ -0,0 +1,84 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// ResponseMeta response meta +// +// swagger:model ResponseMeta +type ResponseMeta struct { + + // Microservice Contact Info + Contact string `json:"Contact,omitempty"` + + // Copyright Info + Copyright string `json:"Copyright,omitempty"` + + // Account Number used for recording transactions + ExternalAccount string `json:"ExternalAccount,omitempty"` + + // License Information and Restrictions + License string `json:"License,omitempty"` + + // Operation ID + OperationID string `json:"OperationID,omitempty"` + + // Request IP Address + RequestIP string `json:"RequestIP,omitempty"` + + // Request Type + RequestType string `json:"RequestType,omitempty"` + + // Request URL + RequestURL string `json:"RequestURL,omitempty"` + + // Data Server Info + ServerInfo string `json:"ServerInfo,omitempty"` + + // Data Server Response Time (ms) + ServerResponseTime string `json:"ServerResponseTime,omitempty"` + + // Backend Server Timestamp + ServerTimestamp string `json:"ServerTimestamp,omitempty"` +} + +// Validate validates this response meta +func (m *ResponseMeta) Validate(formats strfmt.Registry) error { + return nil +} + +// ContextValidate validates this response meta based on context it is used +func (m *ResponseMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + return nil +} + +// MarshalBinary interface implementation +func (m *ResponseMeta) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *ResponseMeta) UnmarshalBinary(b []byte) error { + var res ResponseMeta + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/tenant_user.go b/api/auth/auth_models/tenant_user.go new file mode 100644 index 0000000..45d91e3 --- /dev/null +++ b/api/auth/auth_models/tenant_user.go @@ -0,0 +1,99 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// TenantUser Relationship object that connects users to a tenant +// +// swagger:model TenantUser +type TenantUser struct { + + // The makeTenantUser access level for this User + AccessLevel string `json:"AccessLevel,omitempty"` + + // Account ID + AccountID string `json:"AccountID,omitempty"` + + // Auth0 User ID + Auth0UserID string `json:"Auth0UserID,omitempty"` + + // Account Name + CompanyName string `json:"CompanyName,omitempty"` + + // Contact ID + ContactID string `json:"ContactID,omitempty"` + + // Account + ExternalAccount string `json:"ExternalAccount,omitempty"` + + // Tenant active? + TenantActive bool `json:"TenantActive,omitempty"` + + // The Tenant ID + TenantID string `json:"TenantID,omitempty"` + + // Tenant Name + TenantName string `json:"TenantName,omitempty"` + + // Tenant Status + TenantStatus string `json:"TenantStatus,omitempty"` + + // Tenant type + TenantType string `json:"TenantType,omitempty"` + + // Tenant Version + TenantVersion string `json:"TenantVersion,omitempty"` + + // User Email Address + UserEmail string `json:"UserEmail,omitempty"` + + // User Full Name + UserFullName string `json:"UserFullName,omitempty"` + + // The User ID + UserID string `json:"UserID,omitempty"` + + // Username + Username string `json:"Username,omitempty"` +} + +// Validate validates this tenant user +func (m *TenantUser) Validate(formats strfmt.Registry) error { + return nil +} + +// ContextValidate validates this tenant user based on context it is used +func (m *TenantUser) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + return nil +} + +// MarshalBinary interface implementation +func (m *TenantUser) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *TenantUser) UnmarshalBinary(b []byte) error { + var res TenantUser + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/user.go b/api/auth/auth_models/user.go new file mode 100644 index 0000000..a8792f0 --- /dev/null +++ b/api/auth/auth_models/user.go @@ -0,0 +1,388 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + "strconv" + + "github.com/go-openapi/errors" + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// User user +// +// swagger:model User +type User struct { + + // API Key + APIKey string `json:"APIKey,omitempty"` + + // About Me + AboutMe string `json:"AboutMe,omitempty"` + + // Account ID + AccountID string `json:"AccountID,omitempty"` + + // address + Address *Address `json:"Address,omitempty"` + + // Alias + Alias string `json:"Alias,omitempty"` + + // Auth0 User Id + Auth0UserID string `json:"Auth0UserID,omitempty"` + + // Nickname + CommunityNickname string `json:"CommunityNickname,omitempty"` + + // Company Name + CompanyName string `json:"CompanyName,omitempty"` + + // Contact + ContactID string `json:"ContactID,omitempty"` + + // Created User ID + CreatedByID string `json:"CreatedByID,omitempty"` + + // Date Created + CreatedDate string `json:"CreatedDate,omitempty"` + + // Delegated Approver + DelegatedApproverID string `json:"DelegatedApproverID,omitempty"` + + // Department + Department string `json:"Department,omitempty"` + + // Division + Division string `json:"Division,omitempty"` + + // Email address + Email string `json:"Email,omitempty"` + + // Employee Number + EmployeeNumber string `json:"EmployeeNumber,omitempty"` + + // Time day ends + EndOfDay string `json:"EndOfDay,omitempty"` + + // Environment + Environment string `json:"Environment,omitempty"` + + // Extension + Extension string `json:"Extension,omitempty"` + + // Account + ExternalAccount string `json:"ExternalAccount,omitempty"` + + // Fabric API Key + FabricAPIKey string `json:"FabricAPIKey,omitempty"` + + // Fax + Fax string `json:"Fax,omitempty"` + + // The first name + FirstName string `json:"FirstName,omitempty"` + + // Allow Forecasting + ForecastEnabled bool `json:"ForecastEnabled,omitempty"` + + // Full Photo URL + FullPhotoURL string `json:"FullPhotoURL,omitempty"` + + // ID + ID string `json:"ID,omitempty"` + + // Active + IsActive bool `json:"IsActive,omitempty"` + + // Is the user enabled for Communities? + IsPortalEnabled bool `json:"IsPortalEnabled,omitempty"` + + // Has Profile Photo + IsProphilePhotoActive bool `json:"IsProphilePhotoActive,omitempty"` + + // is system controlled + IsSystemControlled bool `json:"IsSystemControlled,omitempty"` + + // IP address of last login + LastIP string `json:"LastIP,omitempty"` + + // Last login time + LastLogin string `json:"LastLogin,omitempty"` + + // Last Modified User ID + LastModifiedByID string `json:"LastModifiedByID,omitempty"` + + // Last Modified Date + LastModifiedDate string `json:"LastModifiedDate,omitempty"` + + // The Last Name + LastName string `json:"LastName,omitempty"` + + // Number of times user has logged in + LoginCount int64 `json:"LoginCount,omitempty"` + + // Manager + ManagerID string `json:"ManagerID,omitempty"` + + // Mobile + MobilePhone string `json:"MobilePhone,omitempty"` + + // Name + Name string `json:"Name,omitempty"` + + // Out of office message + OutOfOfficeMessage string `json:"OutOfOfficeMessage,omitempty"` + + // Phone + Phone string `json:"Phone,omitempty"` + + // Portal Role Level + PortalRole string `json:"PortalRole,omitempty"` + + // Profile + ProfileID string `json:"ProfileID,omitempty"` + + // Info Emails + ReceivesAdminEmails bool `json:"ReceivesAdminEmails,omitempty"` + + // Admin Info Emails + ReceivesAdminInfoEmails bool `json:"ReceivesAdminInfoEmails,omitempty"` + + // Email Sender Address + SenderEmail string `json:"SenderEmail,omitempty"` + + // Email Sender Name + SenderName string `json:"SenderName,omitempty"` + + // Email Signature + Signature string `json:"Signature,omitempty"` + + // Small Photo URL + SmallPhotoURL string `json:"SmallPhotoURL,omitempty"` + + // The time day starts + StartOfDay string `json:"StartOfDay,omitempty"` + + // Tenant ID associated with this user + TenantID string `json:"TenantID,omitempty"` + + // tenant users + TenantUsers []*TenantUser `json:"TenantUsers"` + + // Time Zone + TimeZone string `json:"TimeZone,omitempty"` + + // Title + Title string `json:"Title,omitempty"` + + // Role + UserRoleID string `json:"UserRoleID,omitempty"` + + // user roles + UserRoles []*UserRole `json:"UserRoles"` + + // User Type + UserType string `json:"UserType,omitempty"` + + // Username + Username string `json:"Username,omitempty"` +} + +// Validate validates this user +func (m *User) Validate(formats strfmt.Registry) error { + var res []error + + if err := m.validateAddress(formats); err != nil { + res = append(res, err) + } + + if err := m.validateTenantUsers(formats); err != nil { + res = append(res, err) + } + + if err := m.validateUserRoles(formats); err != nil { + res = append(res, err) + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} + +func (m *User) validateAddress(formats strfmt.Registry) error { + if swag.IsZero(m.Address) { // not required + return nil + } + + if m.Address != nil { + if err := m.Address.Validate(formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Address") + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Address") + } + return err + } + } + + return nil +} + +func (m *User) validateTenantUsers(formats strfmt.Registry) error { + if swag.IsZero(m.TenantUsers) { // not required + return nil + } + + for i := 0; i < len(m.TenantUsers); i++ { + if swag.IsZero(m.TenantUsers[i]) { // not required + continue + } + + if m.TenantUsers[i] != nil { + if err := m.TenantUsers[i].Validate(formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("TenantUsers" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("TenantUsers" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +func (m *User) validateUserRoles(formats strfmt.Registry) error { + if swag.IsZero(m.UserRoles) { // not required + return nil + } + + for i := 0; i < len(m.UserRoles); i++ { + if swag.IsZero(m.UserRoles[i]) { // not required + continue + } + + if m.UserRoles[i] != nil { + if err := m.UserRoles[i].Validate(formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("UserRoles" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("UserRoles" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +// ContextValidate validate this user based on the context it is used +func (m *User) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + var res []error + + if err := m.contextValidateAddress(ctx, formats); err != nil { + res = append(res, err) + } + + if err := m.contextValidateTenantUsers(ctx, formats); err != nil { + res = append(res, err) + } + + if err := m.contextValidateUserRoles(ctx, formats); err != nil { + res = append(res, err) + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} + +func (m *User) contextValidateAddress(ctx context.Context, formats strfmt.Registry) error { + + if m.Address != nil { + if err := m.Address.ContextValidate(ctx, formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Address") + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Address") + } + return err + } + } + + return nil +} + +func (m *User) contextValidateTenantUsers(ctx context.Context, formats strfmt.Registry) error { + + for i := 0; i < len(m.TenantUsers); i++ { + + if m.TenantUsers[i] != nil { + if err := m.TenantUsers[i].ContextValidate(ctx, formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("TenantUsers" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("TenantUsers" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +func (m *User) contextValidateUserRoles(ctx context.Context, formats strfmt.Registry) error { + + for i := 0; i < len(m.UserRoles); i++ { + + if m.UserRoles[i] != nil { + if err := m.UserRoles[i].ContextValidate(ctx, formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("UserRoles" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("UserRoles" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +// MarshalBinary interface implementation +func (m *User) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *User) UnmarshalBinary(b []byte) error { + var res User + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/user_response.go b/api/auth/auth_models/user_response.go new file mode 100644 index 0000000..b762478 --- /dev/null +++ b/api/auth/auth_models/user_response.go @@ -0,0 +1,166 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + "strconv" + + "github.com/go-openapi/errors" + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// UserResponse An array Taxnexus user objects +// +// swagger:model UserResponse +type UserResponse struct { + + // data + Data []*User `json:"Data"` + + // meta + Meta *ResponseMeta `json:"Meta,omitempty"` +} + +// Validate validates this user response +func (m *UserResponse) Validate(formats strfmt.Registry) error { + var res []error + + if err := m.validateData(formats); err != nil { + res = append(res, err) + } + + if err := m.validateMeta(formats); err != nil { + res = append(res, err) + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} + +func (m *UserResponse) validateData(formats strfmt.Registry) error { + if swag.IsZero(m.Data) { // not required + return nil + } + + for i := 0; i < len(m.Data); i++ { + if swag.IsZero(m.Data[i]) { // not required + continue + } + + if m.Data[i] != nil { + if err := m.Data[i].Validate(formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Data" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Data" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +func (m *UserResponse) validateMeta(formats strfmt.Registry) error { + if swag.IsZero(m.Meta) { // not required + return nil + } + + if m.Meta != nil { + if err := m.Meta.Validate(formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Meta") + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Meta") + } + return err + } + } + + return nil +} + +// ContextValidate validate this user response based on the context it is used +func (m *UserResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + var res []error + + if err := m.contextValidateData(ctx, formats); err != nil { + res = append(res, err) + } + + if err := m.contextValidateMeta(ctx, formats); err != nil { + res = append(res, err) + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} + +func (m *UserResponse) contextValidateData(ctx context.Context, formats strfmt.Registry) error { + + for i := 0; i < len(m.Data); i++ { + + if m.Data[i] != nil { + if err := m.Data[i].ContextValidate(ctx, formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Data" + "." + strconv.Itoa(i)) + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Data" + "." + strconv.Itoa(i)) + } + return err + } + } + + } + + return nil +} + +func (m *UserResponse) contextValidateMeta(ctx context.Context, formats strfmt.Registry) error { + + if m.Meta != nil { + if err := m.Meta.ContextValidate(ctx, formats); err != nil { + if ve, ok := err.(*errors.Validation); ok { + return ve.ValidateName("Meta") + } else if ce, ok := err.(*errors.CompositeError); ok { + return ce.ValidateName("Meta") + } + return err + } + } + + return nil +} + +// MarshalBinary interface implementation +func (m *UserResponse) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *UserResponse) UnmarshalBinary(b []byte) error { + var res UserResponse + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/api/auth/auth_models/user_role.go b/api/auth/auth_models/user_role.go new file mode 100644 index 0000000..2dcfd61 --- /dev/null +++ b/api/auth/auth_models/user_role.go @@ -0,0 +1,90 @@ +// Code generated by go-swagger; DO NOT EDIT. + +// (c) 2012-2020 by Taxnexus, Inc. +// All rights reserved worldwide. +// Proprietary product; unlicensed use is not allowed + +package auth_models + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "context" + + "github.com/go-openapi/strfmt" + "github.com/go-openapi/swag" +) + +// UserRole Relationship object that connects user to a role +// +// swagger:model UserRole +type UserRole struct { + + // Account Id + AccountID string `json:"AccountID,omitempty"` + + // Linked role ID + Auth0RoleID string `json:"Auth0RoleID,omitempty"` + + // Auth0 User ID + Auth0UserID string `json:"Auth0UserID,omitempty"` + + // Company Name + CompanyName string `json:"CompanyName,omitempty"` + + // Contact ID + ContactID string `json:"ContactID,omitempty"` + + // Account Number + ExternalAccount string `json:"ExternalAccount,omitempty"` + + // Role description + RoleDescription string `json:"RoleDescription,omitempty"` + + // The Role ID + RoleID string `json:"RoleID,omitempty"` + + // Role Name + RoleName string `json:"RoleName,omitempty"` + + // User Email Address + UserEmail string `json:"UserEmail,omitempty"` + + // User Full Name + UserFullName string `json:"UserFullName,omitempty"` + + // The User ID + UserID string `json:"UserID,omitempty"` + + // Username + Username string `json:"Username,omitempty"` +} + +// Validate validates this user role +func (m *UserRole) Validate(formats strfmt.Registry) error { + return nil +} + +// ContextValidate validates this user role based on context it is used +func (m *UserRole) ContextValidate(ctx context.Context, formats strfmt.Registry) error { + return nil +} + +// MarshalBinary interface implementation +func (m *UserRole) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *UserRole) UnmarshalBinary(b []byte) error { + var res UserRole + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} diff --git a/app/address.go b/app/address.go new file mode 100644 index 0000000..448b11d --- /dev/null +++ b/app/address.go @@ -0,0 +1,20 @@ +package app + +// Address address struct +type Address struct { + City string + Country string + CountryCode string + PostalCode string + State string + StateCode string + Street string +} + +// ToString returns the full address in a string +func (obj *Address) ToString() string { + return obj.Street + " " + + obj.City + " " + + obj.State + " " + + obj.PostalCode +} diff --git a/app/auth.go b/app/auth.go new file mode 100644 index 0000000..73b1b43 --- /dev/null +++ b/app/auth.go @@ -0,0 +1,39 @@ +package app + +import ( + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_client/user" + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_models" + httptransport "github.com/go-openapi/runtime/client" +) + +// CheckAPIUser authenticates a User with the auth service +// +// When called, ChechAPIUser assumes there is an "auth" service account in the +// app configuration file. +// +func CheckAPIUser(token *string) (*User, error) { + sugar.Debug("app.CheckAPIUser: 📥") + if authUser == nil { + authUser = &User{ + APIKey: GetServiceAccount("auth").APIKey, + Auth: httptransport.APIKeyAuth( + "X-API-Key", + "header", + GetServiceAccount("auth").APIKey, + ), + } + } + params := user.NewGetUsersParams() + params.Apikey = token + response, err := authClient.User.GetUsers(params, authUser.Auth) + if err != nil { + sugar.Warnf("app.CheckAPIUser: ❗ Access attempt with invalid API key: %s", *token) + return nil, err + } + var obj *auth_models.User + for _, itm := range response.Payload.Data { // single iteration execution + obj = itm + } + sugar.Debugf("app.CheckAPIUser: 📤 👍 ID = %s, Name = %s", obj.ID, obj.Name) + return MarshalAuthUserToSwagger(obj), nil +} diff --git a/app/config.go b/app/config.go new file mode 100644 index 0000000..51d7515 --- /dev/null +++ b/app/config.go @@ -0,0 +1,237 @@ +package app + +import ( + "time" + + "code.tnxs.net/vernonkeenan/lib/app/logger" + "go.uber.org/zap/zapcore" +) + +// Worker describes how many service workers to launch +type Worker struct { + ChannelSize int64 `mapstructure:"channel_size,omitempty"` + WorkerCount int `mapstructure:"worker_count,omitempty"` +} + +// CacheSize describes how to chunkify resources +type CacheSize struct { + Increment int64 +} + +// Metrics defines the if and where to collect data +type Metrics struct { + Address string `mapstructure:"address,omitempty"` + Enabled bool `mapstructure:"enabled,omitempty"` +} + +// Endpoint describes a web URL as a service endpoint +type Endpoint struct { + BasePath string `mapstructure:"base_path,omitempty"` + Host string `mapstructure:"host,omitempty"` + Scheme string `mapstructure:"scheme,omitempty"` +} + +type Email struct { + FromAddress string `mapstructure:"from_address,omitempty"` + FromName string `mapstructure:"from_name,omitempty"` + ServiceProvider string `mapstructure:"service_provider,omitempty"` + SMTPHost string `mapstructure:"smtp_host,omitempty"` + SMTPPort string `mapstructure:"smtp_port,omitempty"` + SMTPPassword string `mapstructure:"smtp_password,omitempty"` + SMTPUsername string `mapstructure:"smtp_username,omitempty"` +} + +// Chunk defines cache chunk size +type Chunk struct { + size int32 `mapstructure:"size,omitempty"` +} + +// ServiceAccount defines and external service +type ServiceAccount struct { + APIKey string `mapstructure:"api_key,omitempty"` + ApplicationName string `mapstructure:"application_name,omitempty"` + AuthenticationType string `mapstructure:"authentication_type,omitempty"` + BackendID string `mapstructure:"backend_id,omitempty"` + ClientID string `mapstructure:"client_id,omitempty"` + ClientSecret string `mapstructure:"client_secret,omitempty"` + DSN string `mapstructure:"dsn,omitempty"` + Endpoint Endpoint `mapstructure:"endpoint,omitempty"` + Password string `mapstructure:"password,omitempty"` + Production bool `mapstructure:"production,omitempty"` + SecurityToken string `mapstructure:"security_token,omitempty"` + Credentials string `mapstructure:"credentials,omitempty"` + Timeout time.Duration `mapstructure:"timeout,omitempty"` + Type string `mapstructure:"type,omitempty"` + Username string `mapstructure:"username,omitempty"` + Vendor string `mapstructure:"vendor,omitempty"` +} + +// Configuration defines the config struct +type Configuration struct { + AppName string `mapstructure:"app_name,omitempty"` + BackendID string `mapstructure:"backend_id,omitempty"` + BuildEnv string `mapstructure:"build_env,omitempty"` + CacheSizes map[string]CacheSize `mapstructure:"cache_sizes,omitempty"` + ClusterID string `mapstructure:"cluster_id,omitempty"` + Chunks map[string]Chunk `mapstructure:"chunks,omitempty"` + DBMS string `mapstructure:"dbms,omitempty"` + DBMSHost string `mapstructure:"dbms_host,omitempty"` + DBMSName string `mapstructure:"dbms_name,omitempty"` + DBMSPassword string `mapstructure:"dbms_password,omitempty"` + DBMSUsername string `mapstructure:"dbms_username,omitempty"` + DSN string `mapstructure:"dsn,omitempty"` + Email map[string]Email `mapstructure:"email,omitempty"` + Endpoint Endpoint `mapstructure:"endpoint,omitempty"` + Environment string `mapstructure:"environment,omitempty"` + GelfURI string `mapstructure:"gelf_uri,omitempty"` + GitHubOrgName string `mapstructure:"git_hub_org_name,omitempty"` + LogLevel int `mapstructure:"log_level,omitempty"` + Metrics Metrics `mapstructure:"metrics,omitempty"` + KafkaServer string `mapstructure:"kafka_server,omitempty"` + PDFRenderEngine string `mapstructure:"pdf_render_engine,omitempty"` + RegistryPriv string `mapstructure:"registry_priv,omitempty"` + RegistryPublic string `mapstructure:"registry_public,omitempty"` + RepoName string `mapstructure:"repo_name,omitempty"` + ServiceAccounts map[string]ServiceAccount `mapstructure:"service_accounts,omitempty"` + ShutdownTimeout time.Duration `mapstructure:"shutdown_timeout,omitempty"` + Version string `mapstructure:"version,omitempty"` + Workers map[string]Worker `mapstructure:"workers,omitempty"` +} + +// GetCacheSize returns the named cache size +func GetCacheSize(name string) int64 { + obj, ok := config.CacheSizes[name] + if ok { + return obj.Increment + } + sugar.Warnf("app.GetCacheSize: unknown cache size identifier: %s", name) + return 0 +} + +// GetPDFRenderEngine returns a config file parameter +func GetPDFRenderEngine() string { + return config.PDFRenderEngine +} + +// GetKafkaServer returns a config file parameter +func GetKafkaServer() string { + if config.KafkaServer != "" { + return config.KafkaServer + } + return "nats.fabric.tnxs.net" +} + +// GetChunkSize returns a config file parameter +func GetChunkSize(chunkName string) int { + obj, ok := config.Chunks[chunkName] + if ok { + return int(obj.size) + } + return 0 +} + +// GetMetricsAddress return the metrics Address value +func GetMetricsAddress() string { + return config.Metrics.Address +} + +// IsMetrics returns TRUE if metrics enabled +func IsMetrics() bool { + return config.Metrics.Enabled +} + +// GetWorker returns the named worker record +func GetWorker(name string) *Worker { + worker, ok := config.Workers[name] + if ok { + return &worker + } + return nil +} + +// GetEmail returns the named email record +func GetEmail(name string) *Email { + email, ok := config.Email[name] + if ok { + return &email + } + return nil +} + +// GetServiceAccount returns the named service account struct +func GetServiceAccount(name string) *ServiceAccount { + serviceaccount, ok := config.ServiceAccounts[name] + if ok { + return &serviceaccount + } + sugar.Errorf("app.config: 💣⛔ unknown service account: %s", name) + return nil +} + +// GetDBMSHost returns the parameter +func GetDBMSHost() string { + return config.DBMSHost +} + +// GetDBMSName returns the parameter +func GetDBMSName() string { + return config.DBMSName +} + +// GetDBMSPassword returns the parameter +func GetDBMSPassword() string { + return config.DBMSPassword +} + +// GetDBMSUsername returns the parameter +func GetDBMSUsername() string { + return config.DBMSUsername +} + +// GetAppName retrieves the Taxnexus App Name for this microservice +func GetAppName() string { + return config.AppName +} + +// GetEnvironment retrieves the current runtime environment +func GetEnvironment() string { + return config.Environment +} + +// GetBackendID retrieves the backend ID +func GetBackendID() string { + return config.BackendID +} + +// GetClusterID retrieves the cluster ID +func GetClusterID() string { + return config.ClusterID +} + +// GetDSN retrieves the Taxnexus database DSN for this microservice +func GetDSN() string { + return config.DSN +} + +// GetDBMS retrieves the DBMS string +func GetDBMS() string { + return config.DBMS +} + +// GetLogLevel returns the Log Level +func GetLogLevel() zapcore.Level { + switch config.LogLevel { + case int(logger.DebugLevel): + return logger.DebugLevel + case int(logger.InfoLevel): + return logger.InfoLevel + case int(logger.WarnLevel): + return logger.WarnLevel + case int(logger.ErrorLevel): + return logger.ErrorLevel + case int(logger.PanicLevel): + return logger.PanicLevel + default: + return logger.DebugLevel + } +} diff --git a/app/force.go b/app/force.go new file mode 100644 index 0000000..521af2b --- /dev/null +++ b/app/force.go @@ -0,0 +1,26 @@ +package app + +import ( + "github.com/taxnexus/go-force/force" +) + +// InitForce creates a salesforce connection using serviceAccountName +func InitForce(serviceAccountName string) *force.API { + sugar.Infof("app.initForce: 📥 %s", serviceAccountName) + acct := GetServiceAccount(serviceAccountName) + theForce, err := force.Create( + "v45.0", + acct.ClientID, + acct.ClientSecret, + acct.Username, + acct.Password, + acct.SecurityToken, + "production", + ) + if err != nil { + sugar.Errorf("app.InitForce: salesforce error: %s", err.Error()) + return nil + } + sugar.Info("app.InitForce: 👍 📤") + return theForce +} diff --git a/app/logger/logger.go b/app/logger/logger.go new file mode 100644 index 0000000..7e5fb5f --- /dev/null +++ b/app/logger/logger.go @@ -0,0 +1,43 @@ +// Package logger wraps an external logging package +package logger + +import ( + "log" + + "go.uber.org/zap" + "go.uber.org/zap/zapcore" +) + +type logger = zap.SugaredLogger + +// DebugLevel is exported (5) +var DebugLevel = zapcore.DebugLevel + +// InfoLevel is exported (4) +var InfoLevel = zapcore.InfoLevel + +// WarnLevel is exported (3) +var WarnLevel = zapcore.WarnLevel + +// ErrorLevel is exported (2) +var ErrorLevel = zapcore.ErrorLevel + +// PanicLevel is exported (1) +var PanicLevel = zapcore.PanicLevel + +// New creates a new logger and returns it +func New(level zapcore.Level) *logger { + var theLogger *zap.Logger + var err error + if level == zapcore.DebugLevel { + theLogger, err = zap.NewDevelopment() + } else { + theLogger, err = zap.NewProduction() + } + if err != nil { + log.Fatal("logger.New: 💣 ⛔ zap logger init fail") + } + // theLogger.SetLevel + defer theLogger.Sync() //nolint:errcheck // it's defered + return theLogger.Sugar() +} diff --git a/app/mysql.go b/app/mysql.go new file mode 100644 index 0000000..36db634 --- /dev/null +++ b/app/mysql.go @@ -0,0 +1,29 @@ +package app + +import ( + "database/sql" + + // need this for SQL + _ "github.com/go-sql-driver/mysql" +) + +// MyDB is the MySQL handler variable +var MyDB *sql.DB + +// InitDB initializes the MySQL database using DSN information from the config file +// +func InitDB() { + var db *sql.DB + var err error + if GetDBMS() != "mysql" { + sugar.Fatalf("app.InitDB: 💣 ⛔ unknown DBMS: %s", GetDBMS()) + return + } + db, err = sql.Open("mysql", GetDSN()) + if err != nil { + sugar.Fatalf("app.InitDB: 💣 ⛔ Can't log on to DBMS host: %w", err) + return + } + MyDB = db + sugar.Debugf("app.InitDB: 👍 📤 %s", GetDBMS()) +} diff --git a/app/prometheus.go b/app/prometheus.go new file mode 100644 index 0000000..ed6f341 --- /dev/null +++ b/app/prometheus.go @@ -0,0 +1,67 @@ +package app + +import ( + "fmt" + "net/http" + "time" + + "github.com/prometheus/client_golang/prometheus" + "github.com/rs/cors" +) + +var ( + namespace = "collage" + + counter = prometheus.NewCounterVec(prometheus.CounterOpts{ + Namespace: namespace, + Name: "endpoint_request_count", + Help: "collage request count.", + }, []string{"app", "name", "method", "state"}) + + histogram = prometheus.NewHistogramVec(prometheus.HistogramOpts{ + Namespace: namespace, + Name: "endpoint_duration_seconds", + Help: "Time taken to execute endpoint.", + }, []string{"app", "name", "method", "status"}) +) + +type metricResponseWriter struct { + http.ResponseWriter + statusCode int +} + +func newMetricResponseWriter(w http.ResponseWriter) *metricResponseWriter { + return &metricResponseWriter{w, http.StatusOK} +} + +func (lrw *metricResponseWriter) WriteHeader(code int) { + lrw.statusCode = code + lrw.ResponseWriter.WriteHeader(code) +} + +// SetupPrometheusHandler enable CORS, handler metrics +func SetupPrometheusHandler(handler http.Handler, app string) http.Handler { + sugar.Debug("app.SetupPrometheusHandler: 📥") + handleCORS := cors.AllowAll().Handler + h := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + start := time.Now() + lrw := newMetricResponseWriter(w) + handler.ServeHTTP(lrw, r) + statusCode := lrw.statusCode + duration := time.Since(start) + histogram.WithLabelValues(app, r.URL.String(), r.Method, fmt.Sprintf("%d", statusCode)).Observe(duration.Seconds()) + counter.WithLabelValues(app, r.URL.String(), r.Method, fmt.Sprintf("%d", statusCode)).Inc() + }) + err := prometheus.Register(histogram) + if err != nil { + sugar.Errorf("app.SetupPrometheusHandler: 💣 ⛔ %s", err.Error()) + return nil + } + err = prometheus.Register(counter) + if err != nil { + sugar.Errorf("app.SetupPrometheusHandler: 💣 ⛔ %s", err.Error()) + return nil + } + sugar.Info("app.SetupPrometheusHandler: 👍 📤") + return handleCORS(h) +} diff --git a/app/root.go b/app/root.go new file mode 100644 index 0000000..674f533 --- /dev/null +++ b/app/root.go @@ -0,0 +1,50 @@ +// Package app is a utility package +package app + +import ( + "strings" + + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_client" + "code.tnxs.net/vernonkeenan/lib/app/logger" + "github.com/spf13/viper" + "github.com/taxnexus/go-force/force" + "go.uber.org/zap" + "go.uber.org/zap/zapcore" +) + +// const dateTimeFormat = "2006-01-02T15:04:05-0800" +var sugar *zap.SugaredLogger +var config = Configuration{} +var appViper = viper.New() +var configured = false +var authClient = auth_client.Default +var authUser *User + +// TheForce exports the salesforce interface +var TheForce *force.API + +// InitConfig exports the config initialization func +func InitConfig(systemName string, initalLogLevel zapcore.Level) { + if configured { + return + } + sugar = logger.New(initalLogLevel) + sugar.Infof("app.InitConfig: 📥 %s", systemName) + appViper.SetConfigType("yaml") + appViper.SetConfigName(systemName) + appViper.AddConfigPath("/etc/vernonkeenan") + appViper.SetEnvKeyReplacer(strings.NewReplacer(".", "_")) + appViper.SetEnvPrefix("vernonkeenan") + appViper.AutomaticEnv() // read in environment variables that match + err := appViper.ReadInConfig() + if err != nil { + sugar.Fatalf("app.InitConfig: 💣 ⛔ can't read system config: %w", err) + } + err = appViper.Unmarshal(&config) + if err != nil { + sugar.Fatalf("app.InitConfig: 💣 ⛔ can't unmarshal system config: %w", err) + } + sugar = logger.New(GetLogLevel()) + sugar.Debugf("app.InitConfig: 👍 📤 serviceAccounts: %d", len(config.ServiceAccounts)) + configured = true +} diff --git a/app/service-helpers.go b/app/service-helpers.go new file mode 100644 index 0000000..0733c0c --- /dev/null +++ b/app/service-helpers.go @@ -0,0 +1,157 @@ +package app + +import ( + "database/sql" + "fmt" + "reflect" + "time" +) + +const dateFormat = "2006-01-02" +const dateTimeFormat = "2006-01-02T15:04:05-0800" + +// String takes a string and returns a pointer to the string. +func String(s string) *string { + return &s +} + +// Bool takes a bool and returns a pointer to the bool. +func Bool(b bool) *bool { + return &b +} + +// Int64 takes an int64 and returns a pointer to the int64. +func Int64(i int64) *int64 { + return &i +} + +// Int takes an int and returns a pointer to the int. +func Int(i int) *int { + return &i +} + +// Time takes a time.Time and returns a pointer to the time.Time. +func Time(t time.Time) *time.Time { + return &t +} + +// Float64 takes a float64 and returns a pointer to the float64. +func Float64(f float64) *float64 { + return &f +} + +// FieldsAndValues is a struct that holds field names and corresponding values for an object. +type FieldsAndValues struct { + fieldNames []string + fieldValues []interface{} +} + +// GetFieldsAndValues takes an object and returns a pointer to a FieldsAndValues struct +// containing the field names and corresponding values for each non-zero field, +// excluding the "ID" field. +func GetFieldsAndValues(obj interface{}) *FieldsAndValues { + result := &FieldsAndValues{ + fieldNames: []string{}, + fieldValues: []interface{}{}, + } + + v := reflect.ValueOf(obj).Elem() + t := v.Type() + + for i := 0; i < t.NumField(); i++ { + field := t.Field(i) + fieldValue := v.Field(i) + + if field.Name != "ID" { + if !IsZero(fieldValue) { + fmt.Printf("DEBUG: Adding field %s with value %v\n", field.Name, fieldValue.Interface()) + result.fieldNames = append(result.fieldNames, field.Name) + result.fieldValues = append(result.fieldValues, fieldValue.Interface()) + } + } + } + + return result +} + +// IsZero checks if a value is zero or considered zero-like (e.g., empty arrays or slices, nil pointers). +// Note that strings, including empty strings, are treated as non-zero values. +func IsZero(v reflect.Value) bool { + switch v.Kind() { + case reflect.String: + return false // Treat strings, including empty strings, as non-zero values + case reflect.Struct: + for i := 0; i < v.NumField(); i++ { + if !IsZero(v.Field(i)) { + return false + } + } + return true + case reflect.Ptr, reflect.Interface: + if v.IsNil() { + return true + } + return IsZero(v.Elem()) + case reflect.Array, reflect.Slice: + return v.Len() == 0 + default: + z := reflect.Zero(v.Type()) + return v.Interface() == z.Interface() + } +} + +// SqlDateToString takes a pointer to a sql.NullTime object and returns a pointer to a string +// representing the date in dateTimeFormat if the sql.NullTime object is valid, otherwise returns nil. +func SqlDateToString(d *sql.NullTime) *string { + if d == nil || !d.Valid { + return nil + } + + dateStr := d.Time.Format(dateTimeFormat) + return &dateStr +} + +// StringToSqlDate takes a pointer to a string representing a date and returns a pointer to +// a sql.NullTime object containing the parsed date if the string is not nil, otherwise returns nil. +func StringToSqlDate(s *string) *sql.NullTime { + if s == nil { + return nil + } + + parsedTime, err := ParseDateTime(s) + if err != nil { + return nil + } + + return &sql.NullTime{ + Time: *parsedTime, + Valid: true, + } +} + +// ParseDateTime takes a pointer to a string representing a date and returns a pointer to +// a time.Time object containing the parsed date if the string is in one of the supported formats. +// If the string is nil or not in a supported format, returns an error. +func ParseDateTime(dateStr *string) (*time.Time, error) { + if dateStr == nil { + return nil, fmt.Errorf("✋members.parseDateTime: dateStr is null") + } + loc, _ := time.LoadLocation("Local") + // + formats := []string{dateFormat, dateTimeFormat, time.RFC1123, time.RFC3339} + + var parsedTime *time.Time + for _, format := range formats { + tm, err := time.ParseInLocation(format, *dateStr, loc) + if err == nil { + parsedTime = &tm + break + } + } + + if parsedTime == nil { + return nil, fmt.Errorf("✋parseDateTime: input string doesn't match any of the expected formats") + } + + return parsedTime, nil +} diff --git a/app/tenantuser.go b/app/tenantuser.go new file mode 100644 index 0000000..49abe2c --- /dev/null +++ b/app/tenantuser.go @@ -0,0 +1,31 @@ +package app + +import "code.tnxs.net/vernonkeenan/lib/api/members/members_models" + +// TenantUserActivityWrapper wraps the object with workflow params +type TenantUserActivityWrapper struct { + Obj members_models.TenantUser + APIKey string + SagaID string + SagaType string +} + +// TenantUser is a first class object type +type TenantUser struct { + AccessLevel string + AccountID string + Auth0UserID string + CompanyName string + ContactID string + ExternalAccount string + TenantActive bool + TenantID string + TenantName string + TenantStatus string + TenantType string + TenantVersion string + UserEmail string + UserFullName string + UserID string + Username string +} diff --git a/app/user-helpers.go b/app/user-helpers.go new file mode 100644 index 0000000..57c48cf --- /dev/null +++ b/app/user-helpers.go @@ -0,0 +1,134 @@ +package app + +import ( + "code.tnxs.net/vernonkeenan/lib/api/auth/auth_models" + httptransport "github.com/go-openapi/runtime/client" +) + +// MarshalAuthUserToSwagger is a helper function +func MarshalAuthUserToSwagger(obj *auth_models.User) *User { + var address *Address + if obj.Address != nil { + address = &Address{ + City: obj.Address.City, + Country: obj.Address.Country, + CountryCode: obj.Address.CountryCode, + PostalCode: obj.Address.PostalCode, + State: obj.Address.State, + StateCode: obj.Address.StateCode, + Street: obj.Address.Street, + } + } + var userRoles []*UserRole + if obj.UserRoles != nil { + userRoles = []*UserRole{} + for _, itm := range obj.UserRoles { + userRoles = append(userRoles, reMarshalUserRole(itm)) + } + } + var tenantUsers []*TenantUser + if obj.TenantUsers != nil { + tenantUsers = []*TenantUser{} + for _, itm := range obj.TenantUsers { + tenantUsers = append(tenantUsers, reMarshalTenantUser(itm)) + } + } + return &User{ + ID: obj.ID, + AboutMe: obj.AboutMe, + AccountID: obj.AccountID, + Address: address, + Alias: obj.Alias, + APIKey: obj.APIKey, + Auth: httptransport.APIKeyAuth("X-API-Key", "header", obj.APIKey), + Auth0UserID: obj.Auth0UserID, + CommunityNickname: obj.CommunityNickname, + CompanyName: obj.CompanyName, + ContactID: obj.ContactID, + CreatedByID: obj.CreatedByID, + CreatedDate: obj.CreatedDate, + DelegatedApproverID: obj.DelegatedApproverID, + Department: obj.Department, + Division: obj.Division, + Email: obj.Email, + EmployeeNumber: obj.EmployeeNumber, + EndOfDay: obj.EndOfDay, + Environment: obj.Environment, + Extension: obj.Extension, + FabricAPIKey: obj.FabricAPIKey, + Fax: obj.Fax, + FirstName: obj.FirstName, + ForecastEnabled: obj.ForecastEnabled, + FullPhotoURL: obj.FullPhotoURL, + IsActive: obj.IsActive, + IsPortalEnabled: obj.IsPortalEnabled, + IsProfilePhotoActive: obj.IsProphilePhotoActive, + IsSystemControlled: obj.IsSystemControlled, + LastIP: obj.LastIP, + LastLogin: obj.LastLogin, + LastModifiedByID: obj.LastModifiedByID, + LastModifiedDate: obj.LastModifiedDate, + LastName: obj.LastName, + LoginCount: obj.LoginCount, + ManagerID: obj.ManagerID, + MobilePhone: obj.MobilePhone, + Name: obj.Name, + OutOfOfficeMessage: obj.OutOfOfficeMessage, + Phone: obj.Phone, + PortalRole: obj.PortalRole, + ProfileID: obj.ProfileID, + ReceivesAdminEmails: obj.ReceivesAdminEmails, + ReceivesAdminInfoEmails: obj.ReceivesAdminInfoEmails, + SenderEmail: obj.SenderEmail, + SenderName: obj.SenderName, + Signature: obj.Signature, + SmallPhotoURL: obj.SmallPhotoURL, + StartOfDay: obj.StartOfDay, + ExternalAccount: obj.ExternalAccount, + TenantID: obj.TenantID, + TenantUsers: tenantUsers, + TimeZone: obj.TimeZone, + Title: obj.Title, + Username: obj.Username, + UserRoleID: obj.UserRoleID, + UserRoles: userRoles, + UserType: obj.UserType, + } +} +func reMarshalUserRole(s *auth_models.UserRole) *UserRole { + return &UserRole{ + AccountID: s.AccountID, + Auth0RoleID: s.Auth0RoleID, + Auth0UserID: s.Auth0UserID, + CompanyName: s.CompanyName, + ContactID: s.ContactID, + RoleDescription: s.RoleDescription, + RoleID: s.RoleID, + RoleName: s.RoleName, + ExternalAccount: s.ExternalAccount, + UserEmail: s.UserEmail, + UserFullName: s.UserFullName, + UserID: s.UserID, + Username: s.Username, + } +} +func reMarshalTenantUser(s *auth_models.TenantUser) *TenantUser { + return &TenantUser{ + AccessLevel: s.AccessLevel, + AccountID: s.AccountID, + Auth0UserID: s.Auth0UserID, + CompanyName: s.CompanyName, + ContactID: s.ContactID, + ExternalAccount: s.ExternalAccount, + TenantActive: s.TenantActive, + TenantID: s.TenantID, + TenantName: s.TenantName, + TenantStatus: s.TenantStatus, + TenantType: s.TenantType, + TenantVersion: s.TenantVersion, + UserEmail: s.UserEmail, + UserFullName: s.UserFullName, + UserID: s.UserID, + Username: s.Username, + } +} diff --git a/app/user.go b/app/user.go new file mode 100644 index 0000000..a8b052a --- /dev/null +++ b/app/user.go @@ -0,0 +1,78 @@ +package app + +import ( + "code.tnxs.net/vernonkeenan/lib/api/members/members_models" + "github.com/go-openapi/runtime" +) + +// UserActivityWrapper wraps the object with workflow params +type UserActivityWrapper struct { + Obj members_models.User + APIKey string + SagaID string + SagaType string +} + +// User is a first class object type +type User struct { + ID string + AboutMe string + AccountID string + Address *Address + Alias string + APIKey string + Auth runtime.ClientAuthInfoWriter + Auth0UserID string + CommunityNickname string + CompanyName string + ContactID string + CreatedByID string + CreatedDate string + DelegatedApproverID string + Department string + Division string + Email string + EmployeeNumber string + EndOfDay string + Environment string + Extension string + FabricAPIKey string + Fax string + FirstName string + ForecastEnabled bool + FullPhotoURL string + IsActive bool + IsPortalEnabled bool + IsProfilePhotoActive bool + IsSystemControlled bool + LastIP string + LastLogin string + LastModifiedByID string + LastModifiedDate string + LastName string + LoginCount int64 + ManagerID string + MobilePhone string + Name string + OutOfOfficeMessage string + Phone string + PortalRole string + ProfileID string + ReceivesAdminEmails bool + ReceivesAdminInfoEmails bool + ReceivesInfoEmails bool + SenderEmail string + SenderName string + Signature string + SmallPhotoURL string + StartOfDay string + ExternalAccount string + TenantID string + TenantUsers []*TenantUser + TimeZone string + Title string + Username string + UserRoles []*UserRole + UserRoleID string + UserType string +} diff --git a/app/userrole.go b/app/userrole.go new file mode 100644 index 0000000..d4ac4e9 --- /dev/null +++ b/app/userrole.go @@ -0,0 +1,28 @@ +package app + +import "code.tnxs.net/vernonkeenan/lib/api/members/members_models" + +// UserRoleActivityWrapper wraps the object with workflow params +type UserRoleActivityWrapper struct { + Obj members_models.UserRole + APIKey string + SagaID string + SagaType string +} + +// UserRole is a first class object type +type UserRole struct { + RoleID string + UserID string + Auth0RoleID string + RoleDescription string + RoleName string + AccountID string + CompanyName string + ContactID string + UserEmail string + UserFullName string + ExternalAccount string + Username string + Auth0UserID string +} diff --git a/build/COPYRIGHT b/build/COPYRIGHT new file mode 100644 index 0000000..a24e590 --- /dev/null +++ b/build/COPYRIGHT @@ -0,0 +1,3 @@ +(c) 2012-2020 by Taxnexus, Inc. +All rights reserved worldwide. +Proprietary product; unlicensed use is not allowed \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a236c23 --- /dev/null +++ b/go.mod @@ -0,0 +1,32 @@ +module code.tnxs.net/vernonkeenan/lib + +go 1.15 + +require ( + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/go-openapi/errors v0.20.3 + github.com/go-openapi/jsonreference v0.20.2 // indirect + github.com/go-openapi/loads v0.21.2 // indirect + github.com/go-openapi/runtime v0.25.0 + github.com/go-openapi/spec v0.20.8 // indirect + github.com/go-openapi/strfmt v0.21.7 + github.com/go-openapi/swag v0.22.3 + github.com/go-openapi/validate v0.22.1 + github.com/go-sql-driver/mysql v1.7.0 + github.com/golang/protobuf v1.5.3 // indirect + github.com/pelletier/go-toml v1.9.5 // indirect + github.com/pelletier/go-toml/v2 v2.0.7 // indirect + github.com/prometheus/client_golang v1.14.0 + github.com/prometheus/common v0.42.0 // indirect + github.com/prometheus/procfs v0.9.0 // indirect + github.com/rs/cors v1.8.3 + github.com/spf13/afero v1.9.5 // indirect + github.com/spf13/viper v1.15.0 + github.com/taxnexus/go-force v1.0.7 + go.opentelemetry.io/otel v1.14.0 // indirect + go.uber.org/atomic v1.10.0 // indirect + go.uber.org/multierr v1.10.0 // indirect + go.uber.org/zap v1.24.0 + golang.org/x/net v0.8.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..c27ec0b --- /dev/null +++ b/go.sum @@ -0,0 +1,1528 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= +cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= +cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= +cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= +cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= +cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= +cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= +cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= +cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= +cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= +cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= +cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= +cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= +cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= +cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= +cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= +cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= +cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= +cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= +cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= +cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= +cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= +cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= +cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= +cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= +cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= +cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= +cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= +cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= +cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= +cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= +cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= +cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= +cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= +cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= +cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= +cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= +cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= +cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= +cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= +cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= +cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= +cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= +cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= +cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= +cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= +cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= +cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= +cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= +cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= +cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= +cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= +cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= +cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= +cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= +cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= +cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= +cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= +cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= +cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= +cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= +cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= +cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= +cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= +cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= +cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= +cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= +cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= +cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= +cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= +cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= +cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= +cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= +cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= +cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= +cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= +cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= +cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= +cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= +cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= +cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= +cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= +cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= +cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= +cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= +cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= +cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= +cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= +cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= +cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= +cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= +cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= +cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= +cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= +cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= +cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= +cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= +cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= +cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= +cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= +cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= +cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= +cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= +cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= +cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= +cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= +cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= +cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= +cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= +cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= +cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= +cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= +cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= +cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= +cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= +cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= +cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= +cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= +cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= +cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= +cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= +cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= +cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= +cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= +cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= +cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= +cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= +cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= +cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= +cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= +cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= +cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= +cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= +cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= +cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= +cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= +cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= +cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= +cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= +cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= +cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= +cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= +cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= +cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= +cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= +cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= +cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= +cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= +cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= +cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= +cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= +cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= +cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/alecthomas/kingpin/v2 v2.3.1/go.mod h1:oYL5vtsvEHZGHxU7DMp32Dvx+qL+ptGn6lWaot2vCNE= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137/go.mod h1:OMCwj8VM1Kc9e19TLln2VL61YJF0x1XFtfdL4JdbSyE= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= +github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= +github.com/armon/go-metrics v0.4.0/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= +github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= +github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= +github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= +github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= +github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= +github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= +github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= +github.com/frankban/quicktest v1.14.3/go.mod h1:mgiwOwqx65TmIk1wJ6Q7wvnVMocbUorkibMOrVTHZps= +github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= +github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= +github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= +github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= +github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= +github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/go-openapi/analysis v0.21.2/go.mod h1:HZwRk4RRisyG8vx2Oe6aqeSQcoxRp47Xkp3+K6q+LdY= +github.com/go-openapi/analysis v0.21.4 h1:ZDFLvSNxpDaomuCueM0BlSXxpANBlFYiBvr+GXrvIHc= +github.com/go-openapi/analysis v0.21.4/go.mod h1:4zQ35W4neeZTqh3ol0rv/O8JBbka9QyAgQRPp9y3pfo= +github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= +github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= +github.com/go-openapi/errors v0.20.2/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= +github.com/go-openapi/errors v0.20.3 h1:rz6kiC84sqNQoqrtulzaL/VERgkoCyB6WdEkc2ujzUc= +github.com/go-openapi/errors v0.20.3/go.mod h1:Z3FlZ4I8jEGxjUK+bugx3on2mIAk4txuAOhlsB1FSgk= +github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= +github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= +github.com/go-openapi/jsonreference v0.19.6/go.mod h1:diGHMEHg2IqXZGKxqyvWdfWU/aim5Dprw5bqpKkTvns= +github.com/go-openapi/jsonreference v0.20.0/go.mod h1:Ag74Ico3lPc+zR+qjn4XBUmXymS4zJbYVCZmcgkasdo= +github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= +github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= +github.com/go-openapi/loads v0.21.1/go.mod h1:/DtAMXXneXFjbQMGEtbamCZb+4x7eGwkvZCvBmwUG+g= +github.com/go-openapi/loads v0.21.2 h1:r2a/xFIYeZ4Qd2TnGpWDIQNcP80dIaZgf704za8enro= +github.com/go-openapi/loads v0.21.2/go.mod h1:Jq58Os6SSGz0rzh62ptiu8Z31I+OTHqmULx5e/gJbNw= +github.com/go-openapi/runtime v0.25.0 h1:7yQTCdRbWhX8vnIjdzU8S00tBYf7Sg71EBeorlPHvhc= +github.com/go-openapi/runtime v0.25.0/go.mod h1:Ux6fikcHXyyob6LNWxtE96hWwjBPYF0DXgVFuMTneOs= +github.com/go-openapi/spec v0.20.4/go.mod h1:faYFR1CvsJZ0mNsmsphTMSoRrNV3TEDoAM7FOEWeq8I= +github.com/go-openapi/spec v0.20.6/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA= +github.com/go-openapi/spec v0.20.8 h1:ubHmXNY3FCIOinT8RNrrPfGc9t7I1qhPtdOGoG2AxRU= +github.com/go-openapi/spec v0.20.8/go.mod h1:2OpW+JddWPrpXSCIX8eOx7lZ5iyuWj3RYR6VaaBKcWA= +github.com/go-openapi/strfmt v0.21.0/go.mod h1:ZRQ409bWMj+SOgXofQAGTIo2Ebu72Gs+WaRADcS5iNg= +github.com/go-openapi/strfmt v0.21.1/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k= +github.com/go-openapi/strfmt v0.21.2/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k= +github.com/go-openapi/strfmt v0.21.3/go.mod h1:k+RzNO0Da+k3FrrynSNN8F7n/peCmQQqbbXjtDfvmGg= +github.com/go-openapi/strfmt v0.21.7 h1:rspiXgNWgeUzhjo1YU01do6qsahtJNByjLVbPLNHb8k= +github.com/go-openapi/strfmt v0.21.7/go.mod h1:adeGTkxE44sPyLk0JV235VQAO/ZXUr8KAzYjclFs3ew= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= +github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= +github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= +github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= +github.com/go-openapi/validate v0.21.0/go.mod h1:rjnrwK57VJ7A8xqfpAOEKRH8yQSGUriMu5/zuPSQ1hg= +github.com/go-openapi/validate v0.22.1 h1:G+c2ub6q47kfX1sOBLwIQwzBVt8qmOAARyo/9Fqs9NU= +github.com/go-openapi/validate v0.22.1/go.mod h1:rjnrwK57VJ7A8xqfpAOEKRH8yQSGUriMu5/zuPSQ1hg= +github.com/go-sql-driver/mysql v1.7.0 h1:ueSltNNllEqE3qcWBTD0iQd3IpL/6U+mJxLkazJ7YPc= +github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= +github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0= +github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY= +github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg= +github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= +github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= +github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs= +github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= +github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= +github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk= +github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28= +github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo= +github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk= +github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw= +github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360= +github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg= +github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE= +github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8= +github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= +github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= +github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= +github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= +github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= +github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= +github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= +github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= +github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/hashicorp/consul/api v1.18.0/go.mod h1:owRRGJ9M5xReDC5nfT8FTJrNAPbT4NM6p/k+d03q2v4= +github.com/hashicorp/consul/sdk v0.13.0/go.mod h1:0hs/l5fOVhJy/VdcoaNqUSi2AUs95eF5WKtv+EYIQqE= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= +github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= +github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= +github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= +github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= +github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= +github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= +github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= +github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= +github.com/hashicorp/go-sockaddr v1.0.2/go.mod h1:rB4wwRAUzs07qva3c5SdrY/NEtAUjGlgmH/UkBUC97A= +github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= +github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.2.1/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= +github.com/hashicorp/mdns v1.0.4/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc= +github.com/hashicorp/memberlist v0.5.0/go.mod h1:yvyXLpo0QaGE59Y7hDTsTzDD25JYBZ4mHgHUZ8lrOI0= +github.com/hashicorp/serf v0.10.1/go.mod h1:yL2t6BqATOLGc5HF7qbFkTfXoPIY0WZdWHfEvMqbG+4= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= +github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= +github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= +github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= +github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= +github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= +github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= +github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= +github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= +github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= +github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= +github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= +github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= +github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= +github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= +github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= +github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= +github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= +github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= +github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= +github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= +github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= +github.com/pelletier/go-toml/v2 v2.0.7 h1:muncTPStnKRos5dpVKULv2FVd4bMOhNePj9CjgDb8Us= +github.com/pelletier/go-toml/v2 v2.0.7/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= +github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.11.1/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_golang v1.14.0 h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw= +github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= +github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= +github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= +github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rs/cors v1.8.3 h1:O+qNyWn7Z+F9M0ILBHgMVPuB1xTOucVd5gtaYyXBpRo= +github.com/rs/cors v1.8.3/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= +github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/sagikazarmark/crypt v0.9.0/go.mod h1:RnH7sEhxfdnPm1z+XMgSLjWTEIjyK4z2dw6+4vHTMuo= +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/afero v1.9.3/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= +github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= +github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= +github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= +github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= +github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.15.0 h1:js3yy885G8xwJa6iOISGFwd+qlUo5AvyXb7CiihdtiU= +github.com/spf13/viper v1.15.0/go.mod h1:fFcTBJxvhhzSJiZy8n+PeW6t8l+KeT/uTARa0jHOQLA= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.5/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= +github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/taxnexus/go-force v1.0.7 h1:AhfmLToq3XIq5SkaC621uPu9kGjyTxwDi2k5XxuWws0= +github.com/taxnexus/go-force v1.0.7/go.mod h1:lJDnynWzSMNjYWpPzAMX4gGy+nwDxBFgdHd4z0U1BG0= +github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= +github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= +github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= +github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= +github.com/xdg-go/scram v1.1.1/go.mod h1:RaEWvsqvNKKvBPvcKeFjrG2cJqOkHTiyTpzz23ni57g= +github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= +github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8= +github.com/xhit/go-str2duration v1.2.0/go.mod h1:3cPSlfZlUHVlneIVfePFWcJZsuwf+P1v2SRTV4cUmp4= +github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.etcd.io/etcd/api/v3 v3.5.6/go.mod h1:KFtNaxGDw4Yx/BA4iPPwevUTAuqcsPxzyX8PHydchN8= +go.etcd.io/etcd/client/pkg/v3 v3.5.6/go.mod h1:ggrwbk069qxpKPq8/FKkQ3Xq9y39kbFR4LnKszpRXeQ= +go.etcd.io/etcd/client/v2 v2.305.6/go.mod h1:BHha8XJGe8vCIBfWBpbBLVZ4QjOIlfoouvOwydu63E0= +go.etcd.io/etcd/client/v3 v3.5.6/go.mod h1:f6GRinRMCsFVv9Ht42EyY7nfsVGwrNO0WEoS2pRKzQk= +go.mongodb.org/mongo-driver v1.7.3/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg= +go.mongodb.org/mongo-driver v1.7.5/go.mod h1:VXEWRZ6URJIkUq2SCAyapmhH0ZLRBP+FT4xhp5Zvxng= +go.mongodb.org/mongo-driver v1.8.3/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY= +go.mongodb.org/mongo-driver v1.10.0/go.mod h1:wsihk0Kdgv8Kqu1Anit4sfK+22vSFbUrAVEYRhCXrA8= +go.mongodb.org/mongo-driver v1.11.3 h1:Ql6K6qYHEzB6xvu4+AU0BoRoqf9vFPcc4o7MUIdPW8Y= +go.mongodb.org/mongo-driver v1.11.3/go.mod h1:PTSz5yu21bkT/wXpkS7WR5f0ddqw5quethTUn9WM+2g= +go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= +go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/otel v1.11.1/go.mod h1:1nNhXBbWSD0nsL38H6btgnFN2k4i0sNLHNNMZMSbUGE= +go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= +go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel/sdk v1.11.1 h1:F7KmQgoHljhUuJyA+9BiU+EkJfyX5nVVF4wyzWZpKxs= +go.opentelemetry.io/otel/sdk v1.11.1/go.mod h1:/l3FE4SupHJ12TduVjUkZtlfFqDCQJlOlithYrdktys= +go.opentelemetry.io/otel/trace v1.11.1/go.mod h1:f/Q9G7vzk5u91PhbmKbg1Qn0rzH1LJ4vbPHFGkTPtOk= +go.opentelemetry.io/otel/trace v1.14.0 h1:wp2Mmvj41tDsyAJXiWDWpfNsOiIyd38fy85pyKcFq/M= +go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= +go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= +go.uber.org/goleak v1.1.11 h1:wy28qYRKZgnJTxGxvye5/wgWr1EKjmUDGYox5mGlRlI= +go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= +go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak= +go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= +go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= +go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= +go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= +go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8= +golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211216030914-fe4d6282115f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ= +golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= +golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= +google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= +google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= +google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= +google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.41.0/go.mod h1:U3l9uK9J0sini8mHphKoXyaqDA/8VyGnDee1zzIUK6k= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= +gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= diff --git a/swagger/auth-vernonkeenan.yaml b/swagger/auth-vernonkeenan.yaml new file mode 100644 index 0000000..83e4bde --- /dev/null +++ b/swagger/auth-vernonkeenan.yaml @@ -0,0 +1,433 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "auth" + description: "Authentication Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +security: + - ApiKeyAuth: [] +schemes: + - "http" +basePath: "/v1" +host: "auth.vernonkeenan.com:8080" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + apiKeyQuery: + description: Service account or developer API key + in: query + name: apikey + type: string +responses: + AccessForbidden: + description: "Access forbidden, account lacks access" + schema: + $ref: "#/definitions/Error" + NotFound: + description: Resource was not found + schema: + $ref: "#/definitions/Error" + ServerError: + description: Server Internal Error + schema: + $ref: "#/definitions/Error" + Unauthorized: + description: "Access Unauthorized, invalid API-KEY was used" + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + schema: + $ref: "#/definitions/Error" + UserResponse: + description: Response with User objects + schema: + $ref: "#/definitions/UserResponse" +paths: + /users: + get: + summary: "Check API Key" + operationId: "getUsers" + description: "Checks for a valid API key, and returns full user record" + parameters: + - $ref: "#/parameters/apiKeyQuery" + tags: + - "User" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" +definitions: + Address: + properties: + City: + description: City + type: string + Country: + description: Country full name + type: string + CountryCode: + description: Country Code + type: string + PostalCode: + description: Postal Code + type: string + State: + description: State full name + type: string + StateCode: + description: State Code + type: string + Street: + description: Street number and name + type: string + type: object + Error: + properties: + Code: + format: int32 + type: integer + Fields: + type: string + Message: + type: string + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object + User: + properties: + AboutMe: + description: About Me + type: string + AccountID: + description: Account ID + type: string + Address: + $ref: "#/definitions/Address" + Alias: + description: Alias + type: string + APIKey: + description: API Key + type: string + Auth0UserID: + description: Auth0 User Id + type: string + CommunityNickname: + description: Nickname + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact + type: string + CreatedByID: + description: Created User ID + type: string + CreatedDate: + description: Date Created + type: string + DelegatedApproverID: + description: Delegated Approver + type: string + Department: + description: Department + type: string + Division: + description: Division + type: string + Email: + description: Email address + type: string + EmployeeNumber: + description: Employee Number + type: string + EndOfDay: + description: Time day ends + type: string + Environment: + description: Environment + type: string + Extension: + description: Extension + type: string + FabricAPIKey: + description: Fabric API Key + type: string + Fax: + description: Fax + type: string + FirstName: + description: The first name + type: string + ForecastEnabled: + description: Allow Forecasting + type: boolean + FullPhotoURL: + description: Full Photo URL + type: string + ID: + description: ID + type: string + IsActive: + description: Active + type: boolean + IsPortalEnabled: + description: Is the user enabled for Communities? + type: boolean + IsProphilePhotoActive: + description: Has Profile Photo + type: boolean + IsSystemControlled: + type: boolean + LastModifiedByID: + description: Last Modified User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + LastLogin: + description: Last login time + type: string + LastIP: + description: IP address of last login + type: string + LoginCount: + description: Number of times user has logged in + type: number + format: int64 + LastName: + description: The Last Name + type: string + ManagerID: + description: Manager + type: string + MobilePhone: + description: Mobile + type: string + Name: + description: Name + type: string + OutOfOfficeMessage: + description: Out of office message + type: string + Phone: + description: Phone + type: string + PortalRole: + description: Portal Role Level + type: string + ProfileID: + description: Profile + type: string + ReceivesAdminInfoEmails: + description: Admin Info Emails + type: boolean + ReceivesAdminEmails: + description: Info Emails + type: boolean + SenderEmail: + description: Email Sender Address + type: string + SenderName: + description: Email Sender Name + type: string + Signature: + description: Email Signature + type: string + SmallPhotoURL: + description: Small Photo URL + type: string + StartOfDay: + description: The time day starts + type: string + ExternalAccount: + description: Account + type: string + TenantID: + description: Tenant ID associated with this user + type: string + TimeZone: + description: Time Zone + type: string + Title: + description: Title + type: string + Username: + description: Username + type: string + UserRoleID: + description: Role + type: string + UserType: + description: User Type + type: string + UserRoles: + items: + $ref: "#/definitions/UserRole" + type: array + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + type: object + UserResponse: + description: An array Taxnexus user objects + properties: + Data: + items: + $ref: "#/definitions/User" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + UserRole: + description: Relationship object that connects user to a role + type: object + properties: + AccountID: + description: Account Id + type: string + Auth0RoleID: + description: Linked role ID + type: string + Auth0UserID: + description: Auth0 User ID + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact ID + type: string + RoleDescription: + description: Role description + type: string + RoleID: + description: The Role ID + type: string + RoleName: + description: Role Name + type: string + ExternalAccount: + description: Account Number + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string + Username: + description: Username + type: string + TenantUser: + description: Relationship object that connects users to a tenant + type: object + properties: + AccessLevel: + description: The makeTenantUser access level for this User + type: string + Auth0UserID: + description: Auth0 User ID + type: string + AccountID: + description: Account ID + type: string + ContactID: + description: Contact ID + type: string + CompanyName: + description: Account Name + type: string + ExternalAccount: + description: Account + type: string + TenantActive: + description: Tenant active? + type: boolean + TenantID: + description: The Tenant ID + type: string + TenantName: + description: Tenant Name + type: string + TenantStatus: + description: Tenant Status + type: string + TenantType: + description: Tenant type + type: string + TenantVersion: + description: Tenant Version + type: string + Username: + description: Username + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string diff --git a/swagger/defs/account-basic.yaml b/swagger/defs/account-basic.yaml new file mode 100644 index 0000000..c9a544f --- /dev/null +++ b/swagger/defs/account-basic.yaml @@ -0,0 +1,134 @@ +Account: + properties: + AnnualRevenue: + description: Annual Revenue Estimate + format: double + type: number + x-nullable: true + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + Address: + $ref: "./address.yaml#/Address" + x-nullable: true + ClosedDate: + description: Closed Date + type: string + x-nullable: true + CloudRevenueTotal: + type: number + x-nullable: true + CloudType: + description: The type of cloud company + type: string + x-nullable: true + CloudYear: + description: The year company started cloud revenue + type: string + x-nullable: true + CrunchbaseURL: + description: Crunchbase URL + type: string + x-nullable: true + Description: + description: Description of the account + type: string + x-nullable: true + EIN: + type: string + x-nullable: true + Email: + description: Main Account Email + type: string + x-nullable: true + Facebook: + description: Company Facebook URL + type: string + x-nullable: true + Fax: + description: Fax number + type: string + x-nullable: true + FoundedDate: + description: Date company founded + type: string + x-nullable: true + IPODate: + description: IPO Date + type: string + x-nullable: true + Industries: + description: All Product and Service Industries + type: string + x-nullable: true + Industry: + description: Primary Industry + type: string + x-nullable: true + LinkedIn: + description: Company LinkedIn URL + type: string + x-nullable: true + Location: + description: Headquarters Location Description + type: string + x-nullable: true + Logo: + description: Company Logo URL + type: string + x-nullable: true + Name: + description: Account Name + type: string + x-nullable: true + NumberOfEmployees: + description: Employee Count Estimate + format: int64 + type: number + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + SIC: + description: SIC Code + type: string + x-nullable: true + SICDesc: + description: SIC Description + type: string + x-nullable: true + SalesforceFirst: + description: A Salesforce-First company? + type: boolean + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Company tagline + type: string + x-nullable: true + TickerSymbol: + description: Ticker Symbol + type: string + x-nullable: true + Twitter: + description: Twitter URL + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Website: + description: Website + type: string + x-nullable: true + YearStarted: + description: Year Started + type: string + x-nullable: true + type: object diff --git a/swagger/defs/account.yaml b/swagger/defs/account.yaml new file mode 100644 index 0000000..6930ba6 --- /dev/null +++ b/swagger/defs/account.yaml @@ -0,0 +1,221 @@ +Account: + properties: + AccountNumber: + description: Account Number + type: string + x-nullable: true + AccountSource: + description: The marketing origin of this account + type: string + x-nullable: true + Active: + type: boolean + x-nullable: true + AnnualRevenue: + description: Annual Revenue Estimate + format: double + type: number + x-nullable: true + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + BillingAddress: + $ref: "./address.yaml#/Address" + x-nullable: true + BillingContactID: + description: Contact ID + type: string + x-nullable: true + ClosedDate: + description: Closed Date + type: string + x-nullable: true + CloudRevenueTotal: + type: number + x-nullable: true + CloudType: + description: The type of cloud company + type: string + x-nullable: true + CloudYear: + description: The year company started cloud revenue + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CrunchbaseURL: + description: Crunchbase URL + type: string + x-nullable: true + Description: + description: Description of the account + type: string + x-nullable: true + EIN: + type: string + x-nullable: true + EarningsCall: + description: Earnings Call Date + type: string + x-nullable: true + Email: + description: Main Account Email + type: string + x-nullable: true + EquityFunding: + description: The amount of equity EquityFunding + type: number + x-nullable: true + Facebook: + description: Company Facebook URL + type: string + x-nullable: true + Fax: + description: Fax number + type: string + x-nullable: true + FoundedDate: + description: Date company founded + type: string + x-nullable: true + ID: + description: Account Id + type: string + IPODate: + description: IPO Date + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Industries: + description: Industries + type: string + x-nullable: true + Industry: + description: Industry + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LinkedIn: + description: Company LinkedIn URL + type: string + x-nullable: true + Location: + description: Headquarters Location Description + type: string + x-nullable: true + Logo: + description: Company Logo URL + type: string + x-nullable: true + MarketCapitalization: + description: Market Capitalization + type: number + x-nullable: true + Name: + description: Account Name + type: string + x-nullable: true + NumberInvestments: + description: Number of Investments + type: number + x-nullable: true + NumberOfEmployees: + description: Employee Count Estimate + format: int64 + type: number + x-nullable: true + OwnerID: + description: Account Owner User ID + type: string + x-nullable: true + Ownership: + description: Ownership + type: string + x-nullable: true + ParentID: + description: Parent Account + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + Publish: + description: Publish this record? + type: boolean + x-nullable: true + SIC: + description: SIC Code + type: string + x-nullable: true + SICDesc: + description: SIC Description + type: string + x-nullable: true + SalesforceFirst: + description: A Salesforce-First company? + type: boolean + x-nullable: true + ShippingAddress: + $ref: "./address.yaml#/Address" + x-nullable: true + ShippingContactID: + description: Shipping Contact ID + type: string + x-nullable: true + Site: + description: Account Site + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Company tagline + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + TickerSymbol: + description: Ticker Symbol + type: string + x-nullable: true + Twitter: + description: Twitter URL + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Website: + description: Website + type: string + x-nullable: true + YearStarted: + description: Year Started + type: string + x-nullable: true + type: object diff --git a/swagger/defs/address.yaml b/swagger/defs/address.yaml new file mode 100644 index 0000000..72e15b6 --- /dev/null +++ b/swagger/defs/address.yaml @@ -0,0 +1,31 @@ +Address: + properties: + City: + description: City + type: string + x-nullable: true + Country: + description: Country full name + type: string + x-nullable: true + CountryCode: + description: Country Code + type: string + x-nullable: true + PostalCode: + description: Postal Code + type: string + x-nullable: true + State: + description: State full name + type: string + x-nullable: true + StateCode: + description: State Code + type: string + x-nullable: true + Street: + description: Street number and name + type: string + x-nullable: true + type: object diff --git a/swagger/defs/asset.yaml b/swagger/defs/asset.yaml new file mode 100644 index 0000000..a5cfa1e --- /dev/null +++ b/swagger/defs/asset.yaml @@ -0,0 +1,184 @@ +Asset: + properties: + ID: + description: Record Id + type: string + AccountID: + description: Account + type: string + x-nullable: true + Address: + $ref: "./address.yaml#/Address" + AssetLevel: + description: Asset Level + type: number + x-nullable: true + AssetProvidedByID: + description: Asset Provided By + type: string + x-nullable: true + AssetServicedByID: + description: Asset Serviced By + type: string + x-nullable: true + CompanyProductID: + description: Company Product + type: string + x-nullable: true + ConsequenceOfFailure: + description: Consequence Of Failure + type: string + x-nullable: true + ContactID: + description: Contact + type: string + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CurrentAmount: + description: Current Amount + type: number + x-nullable: true + CurrentLifecycleEndDate: + description: Current Lifecycle End Date + type: string + x-nullable: true + CurrentMrr: + description: Current Monthly Recurring Revenue + type: number + x-nullable: true + CurrentQuantity: + description: Current Quantity + type: number + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + DigitalAssetStatus: + description: Digital Asset Status + type: string + x-nullable: true + ExternalIdentifier: + description: External Id + type: string + x-nullable: true + HasLifecycleManagement: + description: Has Lifecycle Management + type: boolean + x-nullable: true + InstallDate: + description: Install Date + type: string + x-nullable: true + IsCompetitorProduct: + description: Competitor Asset + type: boolean + x-nullable: true + IsInternal: + description: Internal Asset + type: boolean + x-nullable: true + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LocationID: + description: Location + type: string + x-nullable: true + MIMEType: + description: MIME Type + type: string + x-nullable: true + ManufactureDate: + description: Manufacture Date + type: string + x-nullable: true + Name: + description: Asset Name + type: string + x-nullable: true + ParentID: + description: Parent Asset + type: string + x-nullable: true + Price: + description: Price + type: number + x-nullable: true + Product2ID: + description: Product + type: string + x-nullable: true + ProductCode: + description: Product Code + type: string + x-nullable: true + ProductDescription: + description: Product Description + type: string + x-nullable: true + ProductFamily: + description: Product Family + type: string + x-nullable: true + PurchaseDate: + description: Purchase Date + type: string + x-nullable: true + Quantity: + description: Quantity + type: number + x-nullable: true + RootAssetID: + description: Root Asset + type: string + x-nullable: true + SerialNumber: + description: Serial Number + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + StatusReason: + description: Status Reason + type: string + x-nullable: true + StockKeepingUnit: + description: Product SKU + type: string + x-nullable: true + TenantID: + description: Tenant ID + type: string + x-nullable: true + TotalLifecycleAmount: + description: Total Lifecycle Amount + type: number + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + UsageEndDate: + description: Usage End Date + type: string + x-nullable: true + type: object diff --git a/swagger/defs/attendee.yaml b/swagger/defs/attendee.yaml new file mode 100644 index 0000000..5c10c85 --- /dev/null +++ b/swagger/defs/attendee.yaml @@ -0,0 +1,22 @@ +Attendee: + properties: + CheckinStatus: + type: integer + CreatedDate: + type: string + x-nullable: true + EventID: + type: string + x-nullable: true + ID: + type: string + LastModifiedDate: + type: string + x-nullable: true + TicketID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/certificate.yaml b/swagger/defs/certificate.yaml new file mode 100644 index 0000000..94749e7 --- /dev/null +++ b/swagger/defs/certificate.yaml @@ -0,0 +1,29 @@ +Certificate: + properties: + CertificateTemplate: + type: string + x-nullable: true + CourseID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/cluster.yaml b/swagger/defs/cluster.yaml new file mode 100644 index 0000000..30ad2c3 --- /dev/null +++ b/swagger/defs/cluster.yaml @@ -0,0 +1,70 @@ +Cluster: + properties: + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + Environment: + description: Environment + type: string + x-nullable: true + Gateway: + description: Gateway + type: string + x-nullable: true + ID: + description: Record Id + type: string + IPAddress: + description: IP Address + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Cluster Name + type: string + x-nullable: true + OwnerID: + description: Owner + type: string + x-nullable: true + Ref: + description: External Reference + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + Subnet: + description: Subnet + type: string + x-nullable: true + TenantID: + description: The ID of the tenant who owns this Database + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Zone: + description: Zone + type: string + x-nullable: true + type: object diff --git a/swagger/defs/company-product.yaml b/swagger/defs/company-product.yaml new file mode 100644 index 0000000..2c3a4ad --- /dev/null +++ b/swagger/defs/company-product.yaml @@ -0,0 +1,84 @@ +CompanyProduct: + description: A software product or service vended by a Company + properties: + ID: + description: Record Id + type: string + AccountID: + description: ID of the Company that owns this Product + type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of product + type: string + x-nullable: true + FullDescription: + description: Full Description of product + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Product Name + type: string + x-nullable: true + ProductVideoID: + description: Product Video ID + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: TagLine + type: string + x-nullable: true + URL: + description: Website + type: string + x-nullable: true + Industries: + description: Industries + items: + $ref: "./industry.yaml#/Industry" + type: array + x-nullable: true + type: object diff --git a/swagger/defs/company-service.yaml b/swagger/defs/company-service.yaml new file mode 100644 index 0000000..752f48f --- /dev/null +++ b/swagger/defs/company-service.yaml @@ -0,0 +1,78 @@ +CompanyService: + description: A service performed by a Company + properties: + ID: + description: Record Id + type: string + AccountID: + description: ID of the Company that owns this Service + type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of service + type: string + x-nullable: true + FullDescription: + description: Full Description of service + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Service Name + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + ServiceVideoID: + description: Service Video ID + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Tag Line + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + type: object diff --git a/swagger/defs/company.yaml b/swagger/defs/company.yaml new file mode 100644 index 0000000..f368849 --- /dev/null +++ b/swagger/defs/company.yaml @@ -0,0 +1,177 @@ +Company: + properties: + ID: + description: Company Id + type: string + AccountNumber: + description: Company Number + type: string + x-nullable: true + AccountSource: + description: The marketing origin of this Company + type: string + x-nullable: true + Active: + type: boolean + x-nullable: true + AnnualRevenue: + description: Annual Revenue Estimate + format: double + type: number + x-nullable: true + ListingAddress: + $ref: "./address.yaml#/Address" + x-nullable: true + CloudRevenueTotal: + type: number + x-nullable: true + CloudType: + description: The type of cloud company + type: string + x-nullable: true + CloudYear: + description: The year company started cloud revenue + type: string + x-nullable: true + Description: + description: Description of the Company + type: string + x-nullable: true + EarningsCall: + description: Earnings Call Date + type: string + x-nullable: true + Email: + description: Main Company Email + type: string + x-nullable: true + EquityFunding: + description: The amount of equity EquityFunding + type: number + x-nullable: true + Facebook: + description: Company Facebook URL + type: string + x-nullable: true + Fax: + description: Fax number + type: string + x-nullable: true + FoundedDate: + description: Date company founded + type: string + x-nullable: true + IPODate: + description: IPO Date + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Industries: + description: Industries + type: string + x-nullable: true + Industry: + description: Industry + type: string + x-nullable: true + LinkedIn: + description: Company LinkedIn URL + type: string + x-nullable: true + Location: + description: Headquarters Location Description + type: string + x-nullable: true + Logo: + description: Company Logo URL + type: string + x-nullable: true + MarketCapitalization: + description: Market Capitalization + type: number + x-nullable: true + Name: + description: Company Name + type: string + x-nullable: true + NumberInvestments: + description: Number of Investments + type: number + x-nullable: true + NumberOfEmployees: + description: Employee Count Estimate + format: int64 + type: number + x-nullable: true + Ownership: + description: Ownership + type: string + x-nullable: true + ParentID: + description: Parent Company + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + Publish: + description: Publish this record? + type: boolean + x-nullable: true + SalesforceFirst: + description: A Salesforce-First company? + type: boolean + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Company tagline + type: string + x-nullable: true + TickerSymbol: + description: Ticker Symbol + type: string + x-nullable: true + Twitter: + description: Twitter URL + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Website: + description: Website + type: string + x-nullable: true + YearStarted: + description: Year Started + type: string + x-nullable: true + CompanyProducts: + x-nullable: true + description: Company Products + type: array + items: + $ref: "./company-product.yaml#/CompanyProduct" + FinancialStatements: + x-nullable: true + description: Financial Statements + type: array + items: + $ref: "./financial-statement.yaml#/FinancialStatement" + IndustryCompanies: + x-nullable: true + description: Similar Companies + type: array + items: + $ref: "./industry-company.yaml#/IndustryCompany" + type: object diff --git a/swagger/defs/contact.yaml b/swagger/defs/contact.yaml new file mode 100644 index 0000000..88d859a --- /dev/null +++ b/swagger/defs/contact.yaml @@ -0,0 +1,165 @@ +Contact: + properties: + ID: + description: Record Id + type: string + AccountID: + description: The primary account ID of this contact + type: string + x-nullable: true + AssistantName: + description: Assistant Name + type: string + x-nullable: true + AssistantPhone: + description: Asst. Phone + type: string + x-nullable: true + BirthDate: + description: Birthdate + type: string + x-nullable: true + CrunchbaseURL: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Department: + description: Department + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + DoNotCall: + description: Do Not Call? + type: boolean + x-nullable: true + Email: + description: Email address + type: string + x-nullable: true + EmailBounceDate: + description: Email Bounce Date + type: string + x-nullable: true + EmailBouncedReason: + description: Email Bounce Reason + type: string + x-nullable: true + Facebook: + description: Facebook Page + type: string + x-nullable: true + Fax: + description: Fax Number + type: string + x-nullable: true + FirstName: + description: First Name + type: string + x-nullable: true + HasOptedOutOfEmail: + description: Email Opt Out + type: boolean + x-nullable: true + HasOptedOutOfFax: + description: Fax Opt Out + type: boolean + x-nullable: true + HomePhone: + description: Home Phone + type: string + x-nullable: true + IsEmailBounced: + description: Does this contact have bounced emails? + type: boolean + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LastName: + description: Last Name + type: string + x-nullable: true + LeadSource: + description: Lead Source + type: string + x-nullable: true + LinkedIn: + description: LinkedIn Page + type: string + x-nullable: true + MailingAddress: + $ref: "./address.yaml#/Address" + MobilePhone: + description: Mobile Phone + type: string + x-nullable: true + Name: + description: Full Name + type: string + x-nullable: true + NumberInvestments: + type: number + x-nullable: true + OtherAddress: + $ref: "./address.yaml#/Address" + x-nullable: true + OtherPhone: + description: Other Phone + type: string + x-nullable: true + OwnerID: + description: The User ID of the user who owns this Contact + type: string + x-nullable: true + PersonalEmail: + description: Personal Email Address for this Contact + type: string + x-nullable: true + Phone: + description: Phone Number + type: string + x-nullable: true + PhotoURL: + description: URL of a photograph of this User + type: string + x-nullable: true + ReportsToID: + description: Reports To + type: string + x-nullable: true + Salutation: + description: Salutation + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + Title: + description: Contact Title + type: string + x-nullable: true + Twitter: + description: Twitter URL + type: string + x-nullable: true + type: object diff --git a/swagger/defs/contract.yaml b/swagger/defs/contract.yaml new file mode 100644 index 0000000..6a9cf3f --- /dev/null +++ b/swagger/defs/contract.yaml @@ -0,0 +1,124 @@ +Contract: + properties: + AccountID: + description: Account + type: string + x-nullable: true + ActivatedByID: + description: Activated By + type: string + x-nullable: true + ActivatedDate: + description: Activated Date + type: string + x-nullable: true + BillingAddress: + $ref: "./address.yaml#/Address" + description: Billing Address + BillingContactID: + description: Billing Contact + type: string + x-nullable: true + CompanySignedDate: + description: Company Signed Date + type: string + x-nullable: true + CompanySignedID: + description: Company Signed By + type: string + x-nullable: true + ContractNumber: + description: Contract Number + type: string + x-nullable: true + ContractTerm: + description: Contract Term (months) + type: number + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CustomerSignedDate: + description: Customer Signed Date + type: string + x-nullable: true + CustomerSignedID: + description: Customer Signed By + type: string + x-nullable: true + CustomerSignedTitle: + description: Customer Signed Title + type: string + x-nullable: true + DefaultEndUserID: + description: End User + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + EndDate: + description: Contract End Date + type: string + x-nullable: true + EndUserID: + description: End User + type: string + x-nullable: true + HourlyRate: + description: Hourly Rate + type: number + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Contract Name + type: string + x-nullable: true + PaymentMethodID: + description: Payment Method + type: string + x-nullable: true + PaymentTerms: + description: Payment Terms + type: string + x-nullable: true + Perpetual: + description: Perpetual Agreement? + type: boolean + x-nullable: true + ShippingAddress: + $ref: "./address.yaml#/Address" + description: Shipping Address + ShippingContactID: + description: Shipping Contact + type: string + x-nullable: true + StartDate: + description: Contract Start Date + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + type: object diff --git a/swagger/defs/course-lesson.yaml b/swagger/defs/course-lesson.yaml new file mode 100644 index 0000000..4eaf658 --- /dev/null +++ b/swagger/defs/course-lesson.yaml @@ -0,0 +1,47 @@ +CourseLesson: + properties: + ID: + type: string + AssetID: + type: string + x-nullable: true + Content: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Order: + type: integer + x-nullable: true + Slug: + type: string + x-nullable: true + SectionID: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + VideoURL: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/course-section.yaml b/swagger/defs/course-section.yaml new file mode 100644 index 0000000..fd1e007 --- /dev/null +++ b/swagger/defs/course-section.yaml @@ -0,0 +1,45 @@ +CourseSection: + properties: + ID: + type: string + Content: + type: string + x-nullable: true + CourseID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Order: + type: integer + x-nullable: true + Slug: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + Lessons: + items: + $ref: "./course-lesson.yaml#/CourseLesson" + type: array + type: object diff --git a/swagger/defs/course.yaml b/swagger/defs/course.yaml new file mode 100644 index 0000000..fda66f9 --- /dev/null +++ b/swagger/defs/course.yaml @@ -0,0 +1,51 @@ +Course: + properties: + ID: + type: string + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + Fulldescription: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + InstructorID: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + Price: + type: number + x-nullable: true + Slug: + type: string + x-nullable: true + TemplateID: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + Sections: + items: + $ref: "./course-section.yaml#/CourseSection" + type: array + type: object diff --git a/swagger/defs/database.yaml b/swagger/defs/database.yaml new file mode 100644 index 0000000..3cf4f72 --- /dev/null +++ b/swagger/defs/database.yaml @@ -0,0 +1,55 @@ +Database: + description: A Database provisioned and owned by a Tenant + properties: + Active: + description: Is this database active? + type: boolean + x-nullable: true + ClusterID: + description: The ID of the Cluster in which this database is deployed + type: string + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + DSN: + description: Database connection string + type: string + x-nullable: true + DatabaseName: + description: The name of the physical database in the cluster + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modifed Date + type: string + x-nullable: true + Microservices: + description: List of microservices implemented by this Database + type: string + x-nullable: true + Status: + description: The current status of this Tenant + type: string + x-nullable: true + TenantID: + description: The ID of the tenant who owns this Database + type: string + x-nullable: true + Type: + description: The type of Database (mysql, etc) + type: string + x-nullable: true + type: object diff --git a/swagger/defs/delete-response.yaml b/swagger/defs/delete-response.yaml new file mode 100644 index 0000000..9ca1b2a --- /dev/null +++ b/swagger/defs/delete-response.yaml @@ -0,0 +1,9 @@ +DeleteResponse: + properties: + Data: + items: + $ref: "./message.yaml#/Message" + type: array + Meta: + $ref: "./response-meta.yaml#/ResponseMeta" + type: object diff --git a/swagger/defs/document.yaml b/swagger/defs/document.yaml new file mode 100644 index 0000000..a2c71d3 --- /dev/null +++ b/swagger/defs/document.yaml @@ -0,0 +1,90 @@ +Document: + description: A document ingested into SalesforceDevops.net + properties: + ID: + description: Record Id + type: string + AccessControlList: + description: Who can access this document? + type: string + x-nullable: true + Author: + description: The author of the document + type: string + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + DocumentDate: + description: The date of the document + type: string + x-nullable: true + FolderID: + description: The ID of the folder in which this document is stored + type: string + x-nullable: true + ImageAltText: + description: Alt text for the image + type: string + x-nullable: true + ImageURL: + description: Cover image for this document + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modifed Date + type: string + x-nullable: true + Language: + description: The language of the document + type: string + x-nullable: true + Logo: + description: Logo for this document + type: string + x-nullable: true + ObjectID: + description: The ID of the object who owns this document + type: string + x-nullable: true + ObjectType: + description: The type of object who owns this document + type: string + x-nullable: true + Source: + description: Where did the document come from? + type: string + x-nullable: true + Status: + description: Ingestion status of this document + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + Title: + description: Document Title + type: string + x-nullable: true + URL: + description: Source URL for document ingestion + type: string + x-nullable: true + UserID: + description: The ID of the user who owns this document + type: string + x-nullable: true + Version: + description: Version of the document + type: string + x-nullable: true + type: object diff --git a/swagger/defs/email-message.yaml b/swagger/defs/email-message.yaml new file mode 100644 index 0000000..051049b --- /dev/null +++ b/swagger/defs/email-message.yaml @@ -0,0 +1,71 @@ +EmailMessage: + properties: + BCCAddress: + type: string + x-nullable: true + CCAddress: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + FromAddress: + type: string + x-nullable: true + FromName: + type: string + x-nullable: true + HasAttachment: + type: boolean + x-nullable: true + HTML: + type: string + x-nullable: true + Headers: + $ref: "./headers.yaml#/Headers" + x-nullable: true + ID: + type: string + Incoming: + type: boolean + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + MessageDate: + type: string + x-nullable: true + MessageIdentifier: + type: string + x-nullable: true + OutgoingEmailID: + type: string + x-nullable: true + ReplyToEmailMessageID: + type: string + x-nullable: true + Status: + type: string + x-nullable: true + Subject: + type: string + x-nullable: true + TextBody: + x-nullable: true + type: string + ThreadIdentifier: + type: string + x-nullable: true + ToAddress: + type: string + x-nullable: true + ToName: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/enrollment.yaml b/swagger/defs/enrollment.yaml new file mode 100644 index 0000000..39b17c8 --- /dev/null +++ b/swagger/defs/enrollment.yaml @@ -0,0 +1,29 @@ +Enrollment: + properties: + Completed: + type: integer + x-nullable: true + CourseID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + EnrollmentDate: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/error.yaml b/swagger/defs/error.yaml new file mode 100644 index 0000000..4531106 --- /dev/null +++ b/swagger/defs/error.yaml @@ -0,0 +1,10 @@ +Error: + properties: + Code: + format: int64 + type: integer + Fields: + type: string + Message: + type: string + type: object diff --git a/swagger/defs/event-category.yaml b/swagger/defs/event-category.yaml new file mode 100644 index 0000000..5d80007 --- /dev/null +++ b/swagger/defs/event-category.yaml @@ -0,0 +1,35 @@ +EventCategory: + type: object + properties: + ID: + type: string + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Name: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + Slug: + type: string + x-nullable: true diff --git a/swagger/defs/event.yaml b/swagger/defs/event.yaml new file mode 100644 index 0000000..d995c4b --- /dev/null +++ b/swagger/defs/event.yaml @@ -0,0 +1,64 @@ +Event: + properties: + ID: + type: string + AccountID: + type: string + x-nullable: true + Capacity: + type: integer + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + EventCategory: + $ref: "./event-category.yaml#/EventCategory" + EventCategoryID: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + EndDate: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Location: + type: string + x-nullable: true + Online: + type: boolean + x-nullable: true + OrganizerUserID: + type: string + x-nullable: true + RegURL: + type: string + x-nullable: true + Slug: + type: string + x-nullable: true + StartDate: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/factor.yaml b/swagger/defs/factor.yaml new file mode 100644 index 0000000..a7ca5a7 --- /dev/null +++ b/swagger/defs/factor.yaml @@ -0,0 +1,44 @@ +Factor: + description: A Factor of analysis within a research topic + properties: + ID: + description: Record Id + type: string + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + Name: + description: Factor Name + type: string + x-nullable: true + Observations: + description: The list of Observations used to analyze this industry + items: + $ref: "./observation.yaml#/Observation" + type: array + x-nullable: true + Slug: + description: The slug of the corresponding page on the CMS + type: string + x-nullable: true + TopicID: + description: The ID of the Topic that owns this Factor + type: string + x-nullable: true + type: object diff --git a/swagger/defs/favorite.yaml b/swagger/defs/favorite.yaml new file mode 100644 index 0000000..44ab4b4 --- /dev/null +++ b/swagger/defs/favorite.yaml @@ -0,0 +1,38 @@ +Favorite: + properties: + ID: + type: string + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + FavoriteType: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Name: + type: string + x-nullable: true + Order: + type: integer + x-nullable: true + Path: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/financial-statement.yaml b/swagger/defs/financial-statement.yaml new file mode 100644 index 0000000..d54eac2 --- /dev/null +++ b/swagger/defs/financial-statement.yaml @@ -0,0 +1,52 @@ +FinancialStatement: + type: object + description: A financial statement for a company + properties: + ID: + description: Record Id + type: string + AccessNumber: + description: EDGAR Access Number + type: string + AccountID: + description: Account ID + type: string + CloudRevenue: + description: Cloud Revenue + type: number + CreatedByID: + description: Created By User ID + type: string + CreatedDate: + description: Created Date + type: string + Description: + description: Description + type: string + EdgarURL: + description: EDGAR URL + type: string + FilingType: + description: Filing Type + type: string + GrossProfit: + description: Gross Profit + type: number + LastModifiedByID: + description: Last Modified By User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + NetIncome: + description: Net Income + type: number + PeriodEndDate: + description: Period End Date + type: string + TotalRevenue: + description: Total Revenue + type: number + Year: + description: Year + type: string diff --git a/swagger/defs/headers.yaml b/swagger/defs/headers.yaml new file mode 100644 index 0000000..e62b61e --- /dev/null +++ b/swagger/defs/headers.yaml @@ -0,0 +1,11 @@ +Headers: + type: object + properties: + Key: + type: string + Values: + items: + items: + type: string + type: array + type: array diff --git a/swagger/defs/industry-company.yaml b/swagger/defs/industry-company.yaml new file mode 100644 index 0000000..feeed50 --- /dev/null +++ b/swagger/defs/industry-company.yaml @@ -0,0 +1,25 @@ +IndustryCompany: + description: Junction object between Industry and Company + properties: + ID: + description: Record Id + type: string + AccountID: + type: string + CreatedByID: + description: Created By User ID + type: string + CreatedDate: + description: Created Date + type: string + IndustryID: + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + Path: + type: string + type: object diff --git a/swagger/defs/industry-product.yaml b/swagger/defs/industry-product.yaml new file mode 100644 index 0000000..56439f9 --- /dev/null +++ b/swagger/defs/industry-product.yaml @@ -0,0 +1,33 @@ +IndustryProduct: + description: Junction object between Industry and CompanyProduct + properties: + ID: + description: Record Id + type: string + CompanyProduct: + $ref: "./company-product.yaml#/CompanyProduct" + CompanyProductID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Industry: + $ref: "./industry.yaml#/Industry" + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object diff --git a/swagger/defs/industry-service.yaml b/swagger/defs/industry-service.yaml new file mode 100644 index 0000000..144d64c --- /dev/null +++ b/swagger/defs/industry-service.yaml @@ -0,0 +1,33 @@ +IndustryService: + description: Junction Object bewtwen Industry and CompanyService + properties: + ID: + description: Record Id + type: string + CompanyService: + $ref: "./company-service.yaml#/CompanyService" + CompanyServiceID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Industry: + $ref: "./industry.yaml#/Industry" + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object diff --git a/swagger/defs/industry.yaml b/swagger/defs/industry.yaml new file mode 100644 index 0000000..69f1df8 --- /dev/null +++ b/swagger/defs/industry.yaml @@ -0,0 +1,83 @@ +Industry: + description: An industry that is being researched + properties: + ID: + description: Record Id + type: string + CompanyProducts: + description: The list of Products in this industry + items: + $ref: "./company-product.yaml#/CompanyProduct" + type: array + x-nullable: true + CompanyServices: + description: The list of Services in this industry + items: + $ref: "./company-service.yaml#/CompanyService" + type: array + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Industry Description + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Level: + description: The hierarchical level of this Industry + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Industry Name + type: string + x-nullable: true + ParentIndustryID: + description: The ID of the Parent Industry + type: string + x-nullable: true + Path: + description: The full path of this industry, including Parent + type: string + x-nullable: true + ProductCategory: + description: Is this industry a product category? + type: boolean + x-nullable: true + ServiceCategory: + description: Is this industry a service category? + type: boolean + x-nullable: true + Slug: + description: The CMS Slug for this Industry + type: string + x-nullable: true + TagLine: + description: TagLine + type: string + x-nullable: true + type: object diff --git a/swagger/defs/invalid-error.yaml b/swagger/defs/invalid-error.yaml new file mode 100644 index 0000000..43d389b --- /dev/null +++ b/swagger/defs/invalid-error.yaml @@ -0,0 +1,9 @@ +InvalidError: + allOf: + - $ref: "./error.yaml#/Error" + - properties: + details: + items: + type: string + type: array + type: object diff --git a/swagger/defs/invoice.yaml b/swagger/defs/invoice.yaml new file mode 100644 index 0000000..26589c0 --- /dev/null +++ b/swagger/defs/invoice.yaml @@ -0,0 +1,40 @@ +Invoice: + properties: + Amount: + type: number + CourseID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Currency: + type: string + x-nullable: true + DueDate: + type: string + x-nullable: true + ID: + type: string + Invoicenumber: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Status: + type: string + x-nullable: true + TransactionID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/issued-certificate.yaml b/swagger/defs/issued-certificate.yaml new file mode 100644 index 0000000..93c300f --- /dev/null +++ b/swagger/defs/issued-certificate.yaml @@ -0,0 +1,35 @@ +IssuedCertificate: + properties: + CertificateID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + EnrollmentID: + type: string + x-nullable: true + ExpirationDate: + type: string + x-nullable: true + ID: + type: string + IssueDate: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + VerificationCode: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/lead.yaml b/swagger/defs/lead.yaml new file mode 100644 index 0000000..8dbf593 --- /dev/null +++ b/swagger/defs/lead.yaml @@ -0,0 +1,113 @@ +Lead: + properties: + Address: + $ref: "./address.yaml#/Address" + x-nullable: true + Company: + description: Company + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + Email: + description: Email + type: string + x-nullable: true + FirstName: + description: First Name + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LastName: + description: Last Name + type: string + x-nullable: true + MobilePhone: + description: Mobile + type: string + x-nullable: true + Name: + description: Name + type: string + x-nullable: true + OwnerId: + description: LeadBasic Owner + type: string + x-nullable: true + PartnerAccountId: + description: Partner Account + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + ProductID: + description: Product + type: string + x-nullable: true + RefererURL: + description: referer_url + type: string + x-nullable: true + Status: + description: LeadBasic Status + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + Title: + description: Title + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + UTMCampaign: + description: utm_campaign + type: string + x-nullable: true + UTMContent: + description: utm_content + type: string + x-nullable: true + UTMMedium: + description: utm_medium + type: string + x-nullable: true + UTMSource: + description: utm_source + type: string + x-nullable: true + UTMTerm: + description: utm_term + type: string + x-nullable: true + Website: + description: Website + type: string + x-nullable: true + type: object diff --git a/swagger/defs/lesson-progress.yaml b/swagger/defs/lesson-progress.yaml new file mode 100644 index 0000000..6bb3dec --- /dev/null +++ b/swagger/defs/lesson-progress.yaml @@ -0,0 +1,31 @@ +LessonProgress: + properties: + Completed: + type: integer + Completedat: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + EnrollmentID: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + LessonID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/message.yaml b/swagger/defs/message.yaml new file mode 100644 index 0000000..5e35b16 --- /dev/null +++ b/swagger/defs/message.yaml @@ -0,0 +1,10 @@ +Message: + properties: + message: + type: string + ref: + type: string + status: + format: int64 + type: number + type: object diff --git a/swagger/defs/observation.yaml b/swagger/defs/observation.yaml new file mode 100644 index 0000000..d8896aa --- /dev/null +++ b/swagger/defs/observation.yaml @@ -0,0 +1,47 @@ +Observation: + description: A data point collected while analyzing a Factor + properties: + AccountID: + description: The ID of the Company being analyzed + type: string + x-nullable: true + CompanyProductID: + description: The ID of the Product being analyzed + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Notes concerning data collection + type: string + x-nullable: true + FactorID: + description: The ID of the Factor that owns this Observation + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + SubjectType: + description: Is the subject a Company or a Product? + type: string + x-nullable: true + Value: + description: The data point collected + type: string + x-nullable: true + type: object diff --git a/swagger/defs/order.yaml b/swagger/defs/order.yaml new file mode 100644 index 0000000..3bcfdcc --- /dev/null +++ b/swagger/defs/order.yaml @@ -0,0 +1,29 @@ +Order: + properties: + AmountpaID: + type: number + x-nullable: true + Createdat: + type: string + x-nullable: true + EventID: + type: string + x-nullable: true + ID: + type: string + OrderStatus: + type: string + x-nullable: true + PaymentMethod: + type: string + x-nullable: true + TicketID: + type: string + x-nullable: true + UpDatedat: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/outgoing-email-message.yaml b/swagger/defs/outgoing-email-message.yaml new file mode 100644 index 0000000..6f7ccd4 --- /dev/null +++ b/swagger/defs/outgoing-email-message.yaml @@ -0,0 +1,81 @@ +OutgoingEmailMessage: + description: A new email message to be sent + properties: + ID: + type: string + BCCAddress: + type: string + x-nullable: true + Bounced: + type: boolean + x-nullable: true + CCAddress: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + EmailMessageID: + type: string + x-nullable: true + ExternalID: + type: string + x-nullable: true + FromAddress: + type: string + x-nullable: true + FromContactID: + type: string + x-nullable: true + FromName: + type: string + x-nullable: true + Headers: + $ref: "./headers.yaml#/Headers" + x-nullable: true + HTML: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ObjectID: + type: string + x-nullable: true + ObjectType: + type: string + x-nullable: true + Queued: + type: boolean + x-nullable: true + QueuedDate: + type: string + x-nullable: true + Sent: + type: boolean + x-nullable: true + SentDate: + type: string + x-nullable: true + Subject: + type: string + x-nullable: true + TemplateID: + type: string + x-nullable: true + TextBody: + x-nullable: true + type: string + ToAddress: + type: string + x-nullable: true + ToName: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/pagination.yaml b/swagger/defs/pagination.yaml new file mode 100644 index 0000000..19f3306 --- /dev/null +++ b/swagger/defs/pagination.yaml @@ -0,0 +1,15 @@ +Pagination: + properties: + limit: + format: int64 + type: number + pagesize: + format: int64 + type: number + poffset: + format: int64 + type: integer + setsize: + format: int64 + type: number + type: object diff --git a/swagger/defs/payment-method.yaml b/swagger/defs/payment-method.yaml new file mode 100644 index 0000000..774d830 --- /dev/null +++ b/swagger/defs/payment-method.yaml @@ -0,0 +1,35 @@ +PaymentMethod: + properties: + CardHolderName: + type: string + x-nullable: true + CardNumber: + type: string + x-nullable: true + CardType: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + ExpirationMonth: + type: integer + ExpirationYear: + type: integer + ID: + type: string + Isdefault: + type: integer + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/prompt-answer.yaml b/swagger/defs/prompt-answer.yaml new file mode 100644 index 0000000..c3fa3c8 --- /dev/null +++ b/swagger/defs/prompt-answer.yaml @@ -0,0 +1,67 @@ +PromptAnswer: + description: A prompt response/answer + properties: + ID: + description: Record Id + type: string + Answer: + description: The answer to the prompt + type: string + x-nullable: true + CreatedDate: + description: The date the prompt tag was created + type: string + x-nullable: true + CreatedByID: + description: The ID of the user who created the prompt tag + type: string + x-nullable: true + LastModifiedDate: + description: The date the prompt tag was last modified + type: string + x-nullable: true + LastModifiedByID: + description: The ID of the user who last modified the prompt tag + type: string + x-nullable: true + Name: + description: The name of the Answer + type: string + x-nullable: true + ParameterValues: + description: The prompt tag name + type: string + x-nullable: true + PromptID: + description: The ID of the prompt + type: string + x-nullable: true + PromptUsed: + description: The prompt used + type: string + x-nullable: true + SystemUsed: + description: The system used + type: string + x-nullable: true + Temperature: + description: The temperature used + type: number + x-nullable: true + TokensUsed: + description: The tokens used + type: number + x-nullable: true + Type: + description: The type of answer to the prompt + type: string + x-nullable: true + TenantID: + description: The ID of the tenant + type: string + x-nullable: true + UserID: + description: The ID of the user + type: string + x-nullable: true + type: object diff --git a/swagger/defs/prompt-category.yaml b/swagger/defs/prompt-category.yaml new file mode 100644 index 0000000..91b0289 --- /dev/null +++ b/swagger/defs/prompt-category.yaml @@ -0,0 +1,27 @@ +PromptCategory: + description: A prompt category + properties: + ID: + description: Record Id + type: string + Name: + description: The prompt category name + type: string + x-nullable: true + CreatedDate: + description: The date the prompt category was created + type: string + x-nullable: true + CreatedByID: + description: The ID of the user who created the prompt category + type: string + x-nullable: true + LastModifiedDate: + description: The date the prompt category was last modified + type: string + x-nullable: true + LastModifiedByID: + x-nullable: true + description: The ID of the user who last modified the prompt category + type: string + type: object diff --git a/swagger/defs/prompt-tag.yaml b/swagger/defs/prompt-tag.yaml new file mode 100644 index 0000000..7732205 --- /dev/null +++ b/swagger/defs/prompt-tag.yaml @@ -0,0 +1,27 @@ +PromptTag: + description: A prompt tag + properties: + ID: + description: Record Id + type: string + Name: + description: The prompt tag name + type: string + x-nullable: true + CreatedDate: + description: The date the prompt tag was created + type: string + x-nullable: true + CreatedByID: + description: The ID of the user who created the prompt tag + type: string + x-nullable: true + LastModifiedDate: + description: The date the prompt tag was last modified + type: string + x-nullable: true + LastModifiedByID: + description: The ID of the user who last modified the prompt tag + type: string + x-nullable: true + type: object diff --git a/swagger/defs/prompt.yaml b/swagger/defs/prompt.yaml new file mode 100644 index 0000000..1852ca6 --- /dev/null +++ b/swagger/defs/prompt.yaml @@ -0,0 +1,107 @@ +Prompt: + description: A prompt + properties: + ID: + description: Record Id + type: string + CreatedByID: + description: The ID of the user who created the prompt + type: string + x-nullable: true + CreatedDate: + description: The date the prompt was created + type: string + x-nullable: true + Icon: + description: The icon for the prompt + type: string + x-nullable: true + ImageAltText: + description: The alt text for the prompt image + type: string + x-nullable: true + ImageURL: + description: The URL of the prompt image + type: string + x-nullable: true + LastModifiedByID: + description: The ID of the user who last modified the prompt + type: string + x-nullable: true + LastModifiedDate: + description: The date the prompt was last modified + type: string + x-nullable: true + Logo: + description: The logo for the prompt + type: string + x-nullable: true + MaxTokens: + description: The maximum number of tokens to generate + type: number + x-nullable: true + Model: + description: The model for the prompt + type: string + x-nullable: true + Name: + description: The name of the prompt + type: string + x-nullable: true + Order: + description: The order of the prompt + type: number + x-nullable: true + Parameters: + description: A list of parameters encoded as JSON + type: string + x-nullable: true + Prompt: + description: The prompt text + type: string + x-nullable: true + PromptCategoryID: + description: The ID of the prompt category + type: string + x-nullable: true + ResearchProjectIDs: + description: A list of research project IDs + items: + type: string + type: array + x-nullable: true + Slug: + description: The slug for the prompt + type: string + x-nullable: true + System: + description: The System prompt to be used + type: string + x-nullable: true + Tags: + description: A list of tags + items: + type: string + type: array + x-nullable: true + Temperature: + description: The temperature of the prompt + type: number + x-nullable: true + TenantID: + description: The ID of the tenant + type: string + x-nullable: true + Title: + description: The title of the prompt + type: string + x-nullable: true + UsedCount: + description: The number of times the prompt has been used + type: number + x-nullable: true + UserID: + description: The ID of the user who created the prompt + type: string + x-nullable: true + type: object diff --git a/swagger/defs/request-meta.yaml b/swagger/defs/request-meta.yaml new file mode 100644 index 0000000..07e028a --- /dev/null +++ b/swagger/defs/request-meta.yaml @@ -0,0 +1,8 @@ +RequestMeta: + properties: + ExternalAccount: + description: Account Number of the Reseller or OEM + type: string + required: + - ExternalAccount + type: object diff --git a/swagger/defs/research-project-company.yaml b/swagger/defs/research-project-company.yaml new file mode 100644 index 0000000..9d9a5d2 --- /dev/null +++ b/swagger/defs/research-project-company.yaml @@ -0,0 +1,26 @@ +ResearchProjectCompany: + properties: + AccountID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ResearchProjectID: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/research-project-document.yaml b/swagger/defs/research-project-document.yaml new file mode 100644 index 0000000..ca17240 --- /dev/null +++ b/swagger/defs/research-project-document.yaml @@ -0,0 +1,32 @@ +ResearchProjectDocument: + properties: + ID: + type: string + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + DocumentID: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ResearchProjectID: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + Title: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/research-project-product.yaml b/swagger/defs/research-project-product.yaml new file mode 100644 index 0000000..beab86f --- /dev/null +++ b/swagger/defs/research-project-product.yaml @@ -0,0 +1,32 @@ +ResearchProjectProduct: + properties: + ID: + type: string + CompanyProductID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ProductName: + type: string + x-nullable: true + ResearchProjectID: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/research-project-service.yaml b/swagger/defs/research-project-service.yaml new file mode 100644 index 0000000..ac0a394 --- /dev/null +++ b/swagger/defs/research-project-service.yaml @@ -0,0 +1,32 @@ +ResearchProjectService: + properties: + ID: + type: string + CompanyServiceID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ResearchProjectID: + type: string + x-nullable: true + ServiceName: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/research-project-topic.yaml b/swagger/defs/research-project-topic.yaml new file mode 100644 index 0000000..72fd4dd --- /dev/null +++ b/swagger/defs/research-project-topic.yaml @@ -0,0 +1,29 @@ +ResearchProjectTopic: + properties: + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + ResearchProjectID: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + TopicID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/research-project.yaml b/swagger/defs/research-project.yaml new file mode 100644 index 0000000..ab441ec --- /dev/null +++ b/swagger/defs/research-project.yaml @@ -0,0 +1,64 @@ +ResearchProject: + properties: + ID: + type: string + AccountID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Logo: + type: string + x-nullable: true + Name: + type: string + x-nullable: true + Slug: + type: string + x-nullable: true + TenantID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + Companies: + items: + $ref: "./research-project-company.yaml#/ResearchProjectCompany" + type: array + x-nullable: true + Documents: + items: + $ref: "./research-project-document.yaml#/ResearchProjectDocument" + type: array + x-nullable: true + Products: + items: + $ref: "./research-project-product.yaml#/ResearchProjectProduct" + type: array + x-nullable: true + Topics: + items: + $ref: "./research-project-topic.yaml#/ResearchProjectTopic" + type: array + x-nullable: true + type: object diff --git a/swagger/defs/response-meta.yaml b/swagger/defs/response-meta.yaml new file mode 100644 index 0000000..9d643ff --- /dev/null +++ b/swagger/defs/response-meta.yaml @@ -0,0 +1,38 @@ +ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + Pagination: + $ref: "./pagination.yaml#/Pagination" + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object diff --git a/swagger/defs/role.yaml b/swagger/defs/role.yaml new file mode 100644 index 0000000..ca592d4 --- /dev/null +++ b/swagger/defs/role.yaml @@ -0,0 +1,39 @@ +Role: + description: A functional role within a Tenant + properties: + ID: + description: record id + type: string + Auth0RoleID: + description: the corresponding auth0 role + type: string + x-nullable: true + CreatedByID: + description: created by + type: string + x-nullable: true + CreatedDate: + description: created date + type: string + x-nullable: true + Description: + description: role description + type: string + x-nullable: true + LastModifiedByID: + description: last modified by + type: string + x-nullable: true + LastModifiedDate: + description: last modifed date + type: string + x-nullable: true + RoleName: + description: the name of this role + type: string + x-nullable: true + TenantID: + description: the id of the tenant that owns this role + type: string + x-nullable: true + type: object diff --git a/swagger/defs/template.yaml b/swagger/defs/template.yaml new file mode 100644 index 0000000..1e0b846 --- /dev/null +++ b/swagger/defs/template.yaml @@ -0,0 +1,62 @@ +Template: + properties: + CompanyID: + description: Company + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + HTML: + description: HTML Body + type: string + x-nullable: true + ID: + description: Record Id + type: string + IsActive: + description: Active? + type: boolean + x-nullable: true + IsMaster: + description: Master Template? + type: boolean + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Name: + description: Template Name + type: string + x-nullable: true + ObjectType: + description: Object + type: string + x-nullable: true + RecordTypeName: + description: Record Type Name + type: string + x-nullable: true + TenantID: + description: Tenant that owns this object instance + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + type: object diff --git a/swagger/defs/tenant-user.yaml b/swagger/defs/tenant-user.yaml new file mode 100644 index 0000000..622692f --- /dev/null +++ b/swagger/defs/tenant-user.yaml @@ -0,0 +1,68 @@ +TenantUser: + description: Relationship object that connects users to a tenant + properties: + AccessLevel: + description: The makeTenantUser access level for this User + type: string + x-nullable: true + AccountID: + description: Account ID + type: string + x-nullable: true + Auth0UserID: + description: Auth0 User ID + type: string + x-nullable: true + CompanyName: + description: Account Name + type: string + x-nullable: true + ContactID: + description: Contact ID + type: string + x-nullable: true + ExternalAccount: + description: Account + type: string + x-nullable: true + TenantActive: + description: Tenant active? + type: boolean + x-nullable: true + TenantID: + description: The Tenant ID + type: string + x-nullable: true + TenantName: + description: Tenant Name + type: string + x-nullable: true + TenantStatus: + description: Tenant Status + type: string + x-nullable: true + TenantType: + description: Tenant type + type: string + x-nullable: true + TenantVersion: + description: Tenant Version + type: string + x-nullable: true + UserEmail: + description: User Email Address + type: string + x-nullable: true + UserFullName: + description: User Full Name + type: string + x-nullable: true + UserID: + description: The User ID + type: string + x-nullable: true + Username: + description: Username + type: string + x-nullable: true + type: object diff --git a/swagger/defs/tenant.yaml b/swagger/defs/tenant.yaml new file mode 100644 index 0000000..a722e74 --- /dev/null +++ b/swagger/defs/tenant.yaml @@ -0,0 +1,62 @@ +Tenant: + description: Account Tenant + properties: + AccountID: + description: The Account that owns this Tenant + type: string + x-nullable: true + Active: + description: Is this Tenant currently active? + type: boolean + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Databases: + items: + $ref: "./database.yaml#/Database" + type: array + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modifed Date + type: string + x-nullable: true + Roles: + items: + $ref: "./role.yaml#/Role" + type: array + x-nullable: true + Status: + description: The current status of this Tenant + type: string + x-nullable: true + TenantName: + description: Name of the Tenant Resource + type: string + x-nullable: true + TenantUsers: + items: + $ref: "./tenant-user.yaml#/TenantUser" + type: array + x-nullable: true + Type: + description: The type of Tenant + type: string + x-nullable: true + Version: + description: The version number of the Tenant Onboarding system used to create this tenant + type: string + x-nullable: true + type: object diff --git a/swagger/defs/ticket.yaml b/swagger/defs/ticket.yaml new file mode 100644 index 0000000..fe5ae8b --- /dev/null +++ b/swagger/defs/ticket.yaml @@ -0,0 +1,22 @@ +Ticket: + properties: + CreatedDate: + type: string + x-nullable: true + EventID: + type: string + x-nullable: true + ID: + type: string + LastModifiedDate: + type: string + x-nullable: true + Price: + type: number + x-nullable: true + Quantity: + type: integer + Tickettype: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/topic.yaml b/swagger/defs/topic.yaml new file mode 100644 index 0000000..247485b --- /dev/null +++ b/swagger/defs/topic.yaml @@ -0,0 +1,45 @@ +Topic: + description: A research topic that collects data + properties: + ID: + description: Record Id + type: string + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + Factors: + description: The list of Factors used to analyze this industry + items: + $ref: "./factor.yaml#/Factor" + type: array + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Topic Name + type: string + x-nullable: true + ParentTopicID: + description: The ID of the Parent Topic + type: string + x-nullable: true + Slug: + description: The CMS Slug for this Topic + type: string + x-nullable: true + type: object diff --git a/swagger/defs/transaction.yaml b/swagger/defs/transaction.yaml new file mode 100644 index 0000000..d229b4f --- /dev/null +++ b/swagger/defs/transaction.yaml @@ -0,0 +1,40 @@ +Transaction: + properties: + Amount: + type: number + CourseID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Currency: + type: string + x-nullable: true + EnrollmentID: + type: string + x-nullable: true + ID: + type: string + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + PaymentMethodID: + type: string + x-nullable: true + Status: + type: string + x-nullable: true + TransactionDate: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object diff --git a/swagger/defs/user-role.yaml b/swagger/defs/user-role.yaml new file mode 100644 index 0000000..925f1df --- /dev/null +++ b/swagger/defs/user-role.yaml @@ -0,0 +1,56 @@ +UserRole: + description: Relationship object that connects user to a role + properties: + AccountID: + description: Account Id + type: string + x-nullable: true + Auth0RoleID: + description: Linked role ID + type: string + x-nullable: true + Auth0UserID: + description: Auth0 User ID + type: string + x-nullable: true + CompanyName: + description: Company Name + type: string + x-nullable: true + ContactID: + description: Contact ID + type: string + x-nullable: true + RoleDescription: + description: Role description + type: string + x-nullable: true + RoleID: + description: The Role ID + type: string + x-nullable: true + RoleName: + description: Role Name + type: string + x-nullable: true + ExternalAccount: + description: Account Number + type: string + x-nullable: true + UserEmail: + description: User Email Address + type: string + x-nullable: true + UserFullName: + description: User Full Name + type: string + x-nullable: true + UserID: + description: The User ID + type: string + x-nullable: true + Username: + description: Username + type: string + x-nullable: true + type: object diff --git a/swagger/defs/user.yaml b/swagger/defs/user.yaml new file mode 100644 index 0000000..daba714 --- /dev/null +++ b/swagger/defs/user.yaml @@ -0,0 +1,243 @@ +User: + properties: + APIGatewayURL: + description: API Gateway URL + type: string + x-nullable: true + APIGatewayUser: + description: API Gateway User + type: string + x-nullable: true + APIKey: + description: API Key + type: string + x-nullable: true + AboutMe: + description: About Me + type: string + x-nullable: true + AccountID: + description: Account ID + type: string + x-nullable: true + Address: + $ref: "./address.yaml#/Address" + x-nullable: true + Alias: + description: Alias + type: string + x-nullable: true + Auth0UserID: + description: Auth0 User Id + type: string + x-nullable: true + CommunityNickname: + description: Nickname + type: string + x-nullable: true + CompanyName: + description: Company Name + type: string + x-nullable: true + ContactID: + description: Contact + type: string + x-nullable: true + CreatedByID: + description: Created User ID + type: string + x-nullable: true + CreatedDate: + description: Date Created + type: string + x-nullable: true + DelegatedApproverID: + description: Delegated Approver + type: string + x-nullable: true + Department: + description: Department + type: string + x-nullable: true + Division: + description: Division + type: string + x-nullable: true + Email: + description: Email address + type: string + x-nullable: true + EmployeeNumber: + description: Employee Number + type: string + x-nullable: true + EndOfDay: + description: Time day ends + type: string + x-nullable: true + Environment: + description: Environment + type: string + x-nullable: true + Extension: + description: Extension + type: string + x-nullable: true + Fax: + description: Fax + type: string + x-nullable: true + FirstName: + description: The first name + type: string + x-nullable: true + ForecastEnabled: + description: Allow Forecasting + type: boolean + x-nullable: true + FullPhotoURL: + description: Full Photo URL + type: string + x-nullable: true + GitHub: + description: GitHub + type: string + x-nullable: true + ID: + description: Record ID + type: string + IsActive: + description: Active + type: boolean + x-nullable: true + IsPortalEnabled: + description: Is the user enabled for Communities? + type: boolean + x-nullable: true + IsSystemControlled: + type: boolean + x-nullable: true + LastIP: + description: IP address of last login + type: string + x-nullable: true + LastLogin: + description: Last login time + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LastName: + description: The Last Name + type: string + x-nullable: true + LinkedIn: + description: LinkedIn + type: string + x-nullable: true + LoginCount: + description: Number of times user has logged in + format: int64 + type: number + x-nullable: true + ManagerID: + description: Manager + type: string + x-nullable: true + MobilePhone: + description: Mobile + type: string + x-nullable: true + Name: + description: Name + type: string + x-nullable: true + OutOfOfficeMessage: + description: Out of office message + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + PortalRole: + description: Portal Role Level + type: string + x-nullable: true + ProfileID: + description: Profile + type: string + x-nullable: true + ReceivesAdminEmails: + description: Info Emails + type: boolean + x-nullable: true + SenderEmail: + description: Email Sender Address + type: string + x-nullable: true + SenderName: + description: Email Sender Name + type: string + x-nullable: true + SmallPhotoURL: + description: Small Photo URL + type: string + x-nullable: true + StartOfDay: + description: The time day starts + type: string + x-nullable: true + Status: + description: Onboarding Status + type: string + x-nullable: true + ExternalAccount: + description: Account + type: string + x-nullable: true + TenantID: + description: Tenant ID associated with this user + type: string + x-nullable: true + TenantUsers: + items: + $ref: "./tenant-user.yaml#/TenantUser" + type: array + x-nullable: true + TimeZone: + description: Time Zone + type: string + x-nullable: true + Title: + description: Title + type: string + x-nullable: true + Twitter: + description: Twitter + type: string + x-nullable: true + UserRoleID: + description: Role + type: string + x-nullable: true + UserRoles: + items: + $ref: "./user-role.yaml#/UserRole" + type: array + x-nullable: true + UserType: + description: User Type + type: string + x-nullable: true + Username: + description: Username + type: string + x-nullable: true + type: object diff --git a/swagger/external/auth-vernonkeenan.yaml b/swagger/external/auth-vernonkeenan.yaml new file mode 100644 index 0000000..47683d6 --- /dev/null +++ b/swagger/external/auth-vernonkeenan.yaml @@ -0,0 +1,433 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "auth" + description: "Authentication Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +security: + - ApiKeyAuth: [] +schemes: + - "https" +basePath: "/vk/auth/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + apiKeyQuery: + description: Service account or developer API key + in: query + name: apikey + type: string +responses: + AccessForbidden: + description: "Access forbidden, account lacks access" + schema: + $ref: "#/definitions/Error" + NotFound: + description: Resource was not found + schema: + $ref: "#/definitions/Error" + ServerError: + description: Server Internal Error + schema: + $ref: "#/definitions/Error" + Unauthorized: + description: "Access Unauthorized, invalid API-KEY was used" + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + schema: + $ref: "#/definitions/Error" + UserResponse: + description: Response with User objects + schema: + $ref: "#/definitions/UserResponse" +paths: + /users: + get: + summary: "Check API Key" + operationId: "getUsers" + description: "Checks for a valid API key, and returns full user record" + parameters: + - $ref: "#/parameters/apiKeyQuery" + tags: + - "User" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" +definitions: + Address: + properties: + City: + description: City + type: string + Country: + description: Country full name + type: string + CountryCode: + description: Country Code + type: string + PostalCode: + description: Postal Code + type: string + State: + description: State full name + type: string + StateCode: + description: State Code + type: string + Street: + description: Street number and name + type: string + type: object + Error: + properties: + Code: + format: int32 + type: integer + Fields: + type: string + Message: + type: string + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object + User: + properties: + AboutMe: + description: About Me + type: string + AccountID: + description: Account ID + type: string + Address: + $ref: "#/definitions/Address" + Alias: + description: Alias + type: string + APIKey: + description: API Key + type: string + Auth0UserID: + description: Auth0 User Id + type: string + CommunityNickname: + description: Nickname + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact + type: string + CreatedByID: + description: Created User ID + type: string + CreatedDate: + description: Date Created + type: string + DelegatedApproverID: + description: Delegated Approver + type: string + Department: + description: Department + type: string + Division: + description: Division + type: string + Email: + description: Email address + type: string + EmployeeNumber: + description: Employee Number + type: string + EndOfDay: + description: Time day ends + type: string + Environment: + description: Environment + type: string + Extension: + description: Extension + type: string + FabricAPIKey: + description: Fabric API Key + type: string + Fax: + description: Fax + type: string + FirstName: + description: The first name + type: string + ForecastEnabled: + description: Allow Forecasting + type: boolean + FullPhotoURL: + description: Full Photo URL + type: string + ID: + description: ID + type: string + IsActive: + description: Active + type: boolean + IsPortalEnabled: + description: Is the user enabled for Communities? + type: boolean + IsProphilePhotoActive: + description: Has Profile Photo + type: boolean + IsSystemControlled: + type: boolean + LastModifiedByID: + description: Last Modified User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + LastLogin: + description: Last login time + type: string + LastIP: + description: IP address of last login + type: string + LoginCount: + description: Number of times user has logged in + type: number + format: int64 + LastName: + description: The Last Name + type: string + ManagerID: + description: Manager + type: string + MobilePhone: + description: Mobile + type: string + Name: + description: Name + type: string + OutOfOfficeMessage: + description: Out of office message + type: string + Phone: + description: Phone + type: string + PortalRole: + description: Portal Role Level + type: string + ProfileID: + description: Profile + type: string + ReceivesAdminInfoEmails: + description: Admin Info Emails + type: boolean + ReceivesAdminEmails: + description: Info Emails + type: boolean + SenderEmail: + description: Email Sender Address + type: string + SenderName: + description: Email Sender Name + type: string + Signature: + description: Email Signature + type: string + SmallPhotoURL: + description: Small Photo URL + type: string + StartOfDay: + description: The time day starts + type: string + ExternalAccount: + description: Account + type: string + TenantID: + description: Tenant ID associated with this user + type: string + TimeZone: + description: Time Zone + type: string + Title: + description: Title + type: string + Username: + description: Username + type: string + UserRoleID: + description: Role + type: string + UserType: + description: User Type + type: string + UserRoles: + items: + $ref: "#/definitions/UserRole" + type: array + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + type: object + UserResponse: + description: An array Taxnexus user objects + properties: + Data: + items: + $ref: "#/definitions/User" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + UserRole: + description: Relationship object that connects user to a role + type: object + properties: + AccountID: + description: Account Id + type: string + Auth0RoleID: + description: Linked role ID + type: string + Auth0UserID: + description: Auth0 User ID + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact ID + type: string + RoleDescription: + description: Role description + type: string + RoleID: + description: The Role ID + type: string + RoleName: + description: Role Name + type: string + ExternalAccount: + description: Account Number + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string + Username: + description: Username + type: string + TenantUser: + description: Relationship object that connects users to a tenant + type: object + properties: + AccessLevel: + description: The makeTenantUser access level for this User + type: string + Auth0UserID: + description: Auth0 User ID + type: string + AccountID: + description: Account ID + type: string + ContactID: + description: Contact ID + type: string + CompanyName: + description: Account Name + type: string + ExternalAccount: + description: Account + type: string + TenantActive: + description: Tenant active? + type: boolean + TenantID: + description: The Tenant ID + type: string + TenantName: + description: Tenant Name + type: string + TenantStatus: + description: Tenant Status + type: string + TenantType: + description: Tenant type + type: string + TenantVersion: + description: Tenant Version + type: string + Username: + description: Username + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string diff --git a/swagger/external/crm-vernonkeenan.yaml b/swagger/external/crm-vernonkeenan.yaml new file mode 100644 index 0000000..f800c53 --- /dev/null +++ b/swagger/external/crm-vernonkeenan.yaml @@ -0,0 +1,822 @@ +swagger: "2.0" +info: + version: 0.3.4 + title: "crm" + description: "Customer Information Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/crm/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + accountIdQuery: + description: Record Id of an Account + in: query + name: accountId + required: false + type: string + assetIdQuery: + description: Record Id of an Asset + in: query + name: assetId + required: false + type: string + accountRequest: + description: An array of new Account records + in: body + name: accountRequest + required: true + schema: + $ref: "#/definitions/AccountRequest" + assetRequest: + description: An array of new Asset records + in: body + name: assetRequest + required: true + schema: + $ref: "#/definitions/AssetRequest" + activeQuery: + description: Only retrieve active records? + in: query + name: active + required: false + type: boolean + companyIdQuery: + description: Company record ID + in: query + name: companyId + required: false + type: string + leadIdQuery: + description: Lead record ID + in: query + name: leadId + required: false + type: string + contactIdQuery: + description: Contact record ID + in: query + name: contactId + required: false + type: string + contractIdQuery: + description: Contact record ID + in: query + name: contractId + required: false + type: string + emailQuery: + description: Email address used for identity lookup + in: query + name: email + required: false + type: string + contactRequest: + description: An array of new Contact records + in: body + name: contactsRequest + required: true + schema: + $ref: "#/definitions/ContactRequest" + contractRequest: + description: An array of new Contract records + in: body + name: contractsRequest + required: true + schema: + $ref: "#/definitions/ContractRequest" + leadRequest: + description: An array of new Lead records + in: body + name: leadRequest + required: true + schema: + $ref: "#/definitions/LeadRequest" + limitQuery: + description: "How many objects to return at one time" + format: int64 + in: query + name: limit + required: false + type: integer + nameQuery: + description: The Name of this Object + in: query + name: name + required: false + type: string + offsetQuery: + description: How many objects to skip? + format: int64 + in: query + name: offset + required: false + type: integer + slugQuery: + description: The Slug of this Object + in: query + name: slug + required: false + type: string + typeQuery: + description: The Type of this Object + in: query + name: type + required: false + type: string +responses: + AccessForbidden: + description: "Access forbidden, account lacks access" + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + AccountResponse: + description: Response with Account objects with Contacts + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/AccountResponse" + AssetResponse: + description: Response with Asset objects with Contacts + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/AssetResponse" + Conflict: + description: Conflict + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + ContactResponse: + description: Response with an array of Contact objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/ContactResponse" + ContractResponse: + description: Response with an array of Contract objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/ContractResponse" + LeadResponse: + description: Response with an array of Lead objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/LeadResponse" + DeleteResponse: + description: Response with Message Objects with Delete Status + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/DeleteResponse" + InvalidDataError: + headers: + Access-Control-Allow-Origin: + type: string + description: Invalid data was sent + schema: + $ref: "#/definitions/InvalidError" + NotFound: + description: Resource was not found + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + ServerError: + description: Server Internal Error + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + Unauthorized: + description: "Access unauthorized, invalid API-KEY was used" + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" +paths: + /accounts: + delete: + description: Delete SalesforceDevops.net Account record + operationId: deleteAccount + parameters: + - $ref: "#/parameters/accountIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Account + tags: + - Accounts + get: + description: Return a list of all available Accounts + operationId: getAccounts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/slugQuery" + responses: + "200": + $ref: "#/responses/AccountResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of accounts + tags: + - Accounts + post: + description: Account record to be added + operationId: postAccounts + parameters: + - $ref: "#/parameters/accountRequest" + responses: + "200": + $ref: "#/responses/AccountResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new account to SalesforceDevops.net + tags: + - Accounts + put: + description: Update one or more accounts + operationId: putAccounts + parameters: + - $ref: "#/parameters/accountRequest" + responses: + "200": + $ref: "#/responses/AccountResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single account + tags: + - Accounts + /assets: + delete: + description: Delete SalesforceDevops.net Asset record + operationId: deleteAsset + parameters: + - $ref: "#/parameters/assetIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Asset + tags: + - Assets + get: + description: Return a list of all available Assets + operationId: getAssets + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/assetIdQuery" + responses: + "200": + $ref: "#/responses/AssetResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of assets + tags: + - Assets + post: + description: Asset record to be added + operationId: postAssets + parameters: + - $ref: "#/parameters/assetRequest" + responses: + "200": + $ref: "#/responses/AssetResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new asset to SalesforceDevops.net + tags: + - Assets + put: + description: Update a single asset specified by assetId + operationId: putAsset + parameters: + - $ref: "#/parameters/assetRequest" + responses: + "200": + $ref: "#/responses/AssetResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single asset + tags: + - Assets + /contracts: + delete: + description: Delete SalesforceDevops.net Contract record + operationId: deleteContract + parameters: + - $ref: "#/parameters/contractIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Contract + tags: + - Contracts + get: + description: Return a list of all available Contracts + operationId: getContracts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/contractIdQuery" + responses: + "200": + $ref: "#/responses/ContractResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of contracts + tags: + - Contracts + post: + description: Contract record to be added + operationId: postContracts + parameters: + - $ref: "#/parameters/contractRequest" + responses: + "200": + $ref: "#/responses/ContractResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new contract to SalesforceDevops.net + tags: + - Contracts + put: + description: Update a single contract specified by contractId + operationId: putContract + parameters: + - $ref: "#/parameters/contractRequest" + responses: + "200": + $ref: "#/responses/ContractResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single contract + tags: + - Contracts + /contacts: + delete: + description: Delete SalesforceDevops.net Contact record + operationId: deleteContact + parameters: + - $ref: "#/parameters/contactIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete a Contact + tags: + - Contacts + get: + description: Return a list of all available Contacts + operationId: getContacts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/contactIdQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/slugQuery" + - $ref: "#/parameters/emailQuery" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of contacts + tags: + - Contacts + post: + description: Contact record to be added + operationId: postContacts + parameters: + - $ref: "#/parameters/contactRequest" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add new contacts + tags: + - Contacts + put: + description: Update Contact records + operationId: putContacts + parameters: + - $ref: "#/parameters/contactRequest" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Contact + tags: + - Contacts + /leads: + delete: + description: Delete SalesforceDevops.net Lead record + operationId: deleteLead + parameters: + - $ref: "#/parameters/leadIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete a Contact + tags: + - Leads + get: + description: Return a list of all available Leads + operationId: getLeads + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/leadIdQuery" + - $ref: "#/parameters/emailQuery" + - $ref: "#/parameters/nameQuery" + responses: + "200": + $ref: "#/responses/LeadResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of contacts + tags: + - Leads + post: + description: Lead records to be added + operationId: postLeads + parameters: + - $ref: "#/parameters/leadRequest" + responses: + "200": + $ref: "#/responses/LeadResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add new Leads + tags: + - Leads + put: + description: Update Lead records + operationId: putLeads + parameters: + - $ref: "#/parameters/leadRequest" + responses: + "200": + $ref: "#/responses/LeadResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Leads + tags: + - Leads +definitions: + AccountRequest: + description: An array of Account objects with Contacts + properties: + Data: + items: + $ref: "../../lib/swagger/defs/account.yaml#/Account" + type: array + type: object + AccountResponse: + description: An array of Account objects with Contacts + properties: + Data: + items: + $ref: "../../lib/swagger/defs/account.yaml#/Account" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + AssetRequest: + description: An array of Asset objects with Contacts + properties: + Data: + items: + $ref: "../../lib/swagger/defs/asset.yaml#/Asset" + type: array + type: object + AssetResponse: + description: An array of Asset objects with Contacts + properties: + Data: + items: + $ref: "../../lib/swagger/defs/asset.yaml#/Asset" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + ContactRequest: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/contact.yaml#/Contact" + type: array + type: object + ContactResponse: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/contact.yaml#/Contact" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + ContractRequest: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/contract.yaml#/Contract" + type: array + type: object + ContractResponse: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/contract.yaml#/Contract" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + DeleteResponse: + $ref: "../../lib/swagger/defs/delete-response.yaml#/DeleteResponse" + Error: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + InvalidError: + $ref: "../../lib/swagger/defs/invalid-error.yaml#/InvalidError" + LeadRequest: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/lead.yaml#/Lead" + type: array + type: object + LeadResponse: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/lead.yaml#/Lead" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + Message: + $ref: "../../lib/swagger/defs/message.yaml#/Message" + RequestMeta: + $ref: "../../lib/swagger/defs/request-meta.yaml#/RequestMeta" diff --git a/swagger/external/devops-vernonkeenan.yaml b/swagger/external/devops-vernonkeenan.yaml new file mode 100644 index 0000000..5cf05b5 --- /dev/null +++ b/swagger/external/devops-vernonkeenan.yaml @@ -0,0 +1,1820 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "devops" + description: "System Operations Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/devops/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + databaseIdQuery: + description: Record Id of a Database + in: query + name: databaseId + required: false + type: string + taxnexusAccountQuery: + description: Account of a Tenant + in: query + name: taxnexusAccount + required: false + type: string + tenantIdQuery: + description: Record Id of a Tenant + in: query + name: tenantId + required: false + type: string + tenantRequest: + description: An array of Tenant records + in: body + name: TenantRequest + required: true + schema: + $ref: "#/definitions/TenantRequest" + databaseRequest: + description: An array of Database records + in: body + name: DatabaseRequest + required: true + schema: + $ref: "#/definitions/DatabaseRequest" + X-API-Key: + name: X-API-Key + in: "header" + required: true + type: string + ClusterRequest: + description: An array of Cluster records + in: body + name: ClusterRequest + required: true + schema: + $ref: "#/definitions/ClusterRequest" + TemplateRequest: + description: An array of Template records + in: body + name: TemplateRequest + required: true + schema: + $ref: "#/definitions/TemplateRequest" + UserRequest: + description: An array of User records + in: body + name: UserRequest + required: true + schema: + $ref: "#/definitions/UserRequest" + accountIdQuery: + description: Record Id of an Account + in: query + name: accountId + required: false + type: string + contactIdQuery: + description: Record Id of a Contact + in: query + name: contactId + required: false + type: string + accountNumberQuery: + description: The Taxnexus Account Number of the Account to be used a record + retrieval + in: query + name: accountNumber + required: false + type: string + activeQuery: + description: Retrieve active records only? + in: query + name: active + required: false + type: boolean + apiKeyQuery: + description: Service account or developer API key + in: query + name: apikey + type: string + clusterIdPath: + description: Record Id of a Cluster + in: path + name: clusterIdPath + type: string + required: true + databaseIdPath: + description: Record Id of a Database + in: path + name: databaseIdPath + type: string + required: true + clusterIdQuery: + description: Record Id of a Cluster + in: query + name: clusterId + required: false + type: string + companyIdQuery: + description: Record Id of a Company + in: query + name: companyId + required: false + type: string + ingestIdPath: + description: Record Id of a Ingest + in: path + name: ingestIdPath + type: string + required: true + ingestIdQuery: + description: Record Id of an Ingest + in: query + name: ingestId + required: false + type: string + jobIdPath: + description: Record Id of a Job + in: path + name: jobIdPath + type: string + required: true + jobIdQuery: + description: Record Id of a Job + in: query + name: jobId + required: false + type: string + limitQuery: + description: "How many objects to return at one time" + format: int64 + in: query + name: limit + required: false + type: integer + offsetQuery: + description: How many objects to skip? (default 0) + format: int64 + in: query + name: offset + required: false + type: integer + serviceIdPath: + description: Record Id of a Service + in: path + name: serviceIdPath + type: string + required: true + serviceIdQuery: + description: Service ID + in: query + name: serviceId + type: string + templateIdPath: + description: Record Id of a Template + in: path + name: templateIdPath + type: string + required: true + templateIdQuery: + description: Template ID + in: query + name: templateId + type: string + objectTypeQuery: + description: Object Type Name + in: query + name: objectType + type: string + isMasterQuery: + description: Is Master Template? + in: query + name: isMaster + type: boolean + userIdPath: + description: Record Id of a User + in: path + name: userIdPath + type: string + required: true + tenantIdPath: + description: Record Id of a Tenant + in: path + name: tenantIdPath + type: string + required: true + userIdQuery: + description: User ID (unique) + in: query + name: userId + type: string + emailQuery: + description: Email Address (not unique) + in: query + name: email + type: string + usernameQuery: + description: Username (unique) + in: query + name: username + type: string + userRequest: + description: An array of user records + in: body + name: UserRequest + required: true + schema: + $ref: "#/definitions/UserRequest" +responses: + AccessForbidden: + description: "Access forbidden, account lacks access" + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + ClusterSingletonResponse: + description: Single Cluster record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Cluster" + ClusterObservableResponse: + description: Single Cluster record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + type: array + items: + $ref: "#/definitions/Cluster" + ClusterResponse: + description: Response with Cluster objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/ClusterResponse" + DeveopsDeleteResponse: + description: Response with Message Objects with Delete Status + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/DeleteResponse" + NotFound: + headers: + Access-Control-Allow-Origin: + type: string + description: Resource was not found + schema: + $ref: "#/definitions/Error" + DatabaseResponse: + headers: + Access-Control-Allow-Origin: + type: string + description: Response with Database objects + schema: + $ref: "#/definitions/DatabaseResponse" + DatabaseSingletonResponse: + description: Single Database record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Database" + DatabaseObservableResponse: + description: Single Database record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + type: array + items: + $ref: "#/definitions/Database" + TenantResponse: + headers: + Access-Control-Allow-Origin: + type: string + description: Response with Tenant objects + schema: + $ref: "#/definitions/TenantResponse" + TenantSingletonResponse: + description: Single Tenant record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Tenant" + TenantObservableResponse: + description: Single Tenant record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + type: array + items: + $ref: "#/definitions/Tenant" + ServerError: + headers: + Access-Control-Allow-Origin: + type: string + description: Server Internal Error + schema: + $ref: "#/definitions/Error" + TemplateResponse: + description: Response with Template objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/TemplateResponse" + TemplateSingletonResponse: + description: Single Template record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Template" + TemplateObservableResponse: + description: Simple Template record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + type: array + items: + $ref: "#/definitions/Template" + Unauthorized: + description: "Access Unauthorized, invalid API-KEY was used" + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/Error" + UserResponse: + description: Response with User objects + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/UserResponse" + UserSingletonResponse: + description: Single User record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + $ref: "#/definitions/User" + UserObservableResponse: + description: Simple User record response + headers: + Access-Control-Allow-Origin: + type: string + Cache-Control: + type: string + schema: + type: array + items: + $ref: "#/definitions/User" + CORSResponse: + description: CORS OPTIONS response + headers: + Access-Control-Allow-Origin: + type: string + Access-Control-Allow-Headers: + type: string + Access-Control-Allow-Methods: + type: string + Access-Control-Expose-Headers: + type: string + Access-Control-Max-Age: + type: string + Access-Control-Allow-Credentials: + type: string + Cache-Control: + type: string +paths: + /clusters: + get: + description: Return a list of Cluster records from the datastore + operationId: getClusters + parameters: + - $ref: "#/parameters/clusterIdQuery" + - $ref: "#/parameters/companyIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Clusters + tags: + - Cluster + options: + description: CORS support + operationId: clustersOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + post: + description: Create Clusters in Taxnexus + operationId: postClusters + parameters: + - $ref: "#/parameters/ClusterRequest" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Clusters + tags: + - Cluster + put: + description: Update Cluster in Taxnexus + operationId: putClusters + parameters: + - $ref: "#/parameters/ClusterRequest" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Clustera + tags: + - Cluster + /clusters/observable: + get: + description: Returns a Cluster retrieval in a observable array + operationId: getClustersObservable + responses: + "200": + $ref: "#/responses/ClusterObservableResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Clusters in an observable array + tags: + - Cluster + options: + description: CORS support + operationId: clusterOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + "/clusters/{clusterIdPath}": + get: + description: Return a single Cluster object from datastore as a Singleton + operationId: getCluster + parameters: + - $ref: "#/parameters/clusterIdPath" + responses: + "200": + $ref: "#/responses/ClusterSingletonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a single Cluster object + tags: + - Cluster + /databases: + get: + description: Return a list of Database records from the datastore + operationId: getDatabases + parameters: + - $ref: "#/parameters/databaseIdQuery" + - $ref: "#/parameters/companyIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Databases + tags: + - Database + options: + description: CORS support + operationId: databasesOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + post: + description: Create Databases in Taxnexus + operationId: postDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Databases + tags: + - Database + put: + description: Update Database in Taxnexus + operationId: putDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Databases + tags: + - Database + /databases/observable: + get: + description: Returns a Database retrieval in a observable array + operationId: getDatabasesObservable + responses: + "200": + $ref: "#/responses/DatabaseObservableResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Databases in an observable array + tags: + - Database + options: + description: CORS support + operationId: databaseOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + "/databases/{databaseIdPath}": + get: + description: Return a single Database object from datastore as a Singleton + operationId: getDatabase + parameters: + - $ref: "#/parameters/databaseIdPath" + responses: + "200": + $ref: "#/responses/DatabaseSingletonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a single Database object + tags: + - Database + /templates: + get: + description: Return a list of Templates from the datastore + operationId: getTemplates + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/templateIdQuery" + - $ref: "#/parameters/isMasterQuery" + - $ref: "#/parameters/objectTypeQuery" + responses: + "200": + $ref: "#/responses/TemplateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Templates + tags: + - Template + options: + description: CORS support + operationId: templatesOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + post: + description: Create new Templates + operationId: postTemplates + parameters: + - $ref: "#/parameters/TemplateRequest" + responses: + "200": + $ref: "#/responses/TemplateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Templates + tags: + - Template + /templates/observable: + get: + description: Returns a Template retrieval in a observable array + operationId: getTemplatesObservable + responses: + "200": + $ref: "#/responses/TemplateObservableResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Templates in an observable array + tags: + - Template + options: + description: CORS support + operationId: templateOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + "/templates/{templateIdPath}": + get: + description: Return a single Template object from datastore as a Singleton + operationId: getTemplate + parameters: + - $ref: "#/parameters/templateIdPath" + responses: + "200": + $ref: "#/responses/TemplateSingletonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a single Template object + tags: + - Template + /tenants: + get: + description: Return a list of Tenant records from the datastore + operationId: getTenants + parameters: + - $ref: "#/parameters/taxnexusAccountQuery" + - $ref: "#/parameters/tenantIdQuery" + - $ref: "#/parameters/companyIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Tenants + tags: + - Tenant + options: + description: CORS support + operationId: tenantsOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + post: + description: Create Tenants in Taxnexus + operationId: postTenants + parameters: + - $ref: "#/parameters/tenantRequest" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Tenants + tags: + - Tenant + put: + description: Update Tenant in Taxnexus + operationId: putTenants + parameters: + - $ref: "#/parameters/tenantRequest" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Tenants + tags: + - Tenant + /tenants/observable: + get: + description: Returns a Tenant retrieval in a observable array + operationId: getTenantsObservable + responses: + "200": + $ref: "#/responses/TenantObservableResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Tenants in an observable array + tags: + - Tenant + options: + description: CORS support + operationId: tenantOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + "/tenants/{tenantIdPath}": + get: + description: Return a single Tenant object from datastore as a Singleton + operationId: getTenant + parameters: + - $ref: "#/parameters/tenantIdPath" + responses: + "200": + $ref: "#/responses/TenantSingletonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a single Tenant object + tags: + - Tenant + /users: + get: + description: Return a list of User records from the datastore + operationId: getUsers + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/contactIdQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/emailQuery" + - $ref: "#/parameters/userIdQuery" + - $ref: "#/parameters/usernameQuery" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Users + tags: + - User + options: + description: CORS support + operationId: usersOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + post: + description: Create new Users + operationId: postUsers + parameters: + - $ref: "#/parameters/UserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Users + tags: + - User + put: + description: Update existing users + operationId: putUsers + parameters: + - $ref: "#/parameters/UserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update existing users + tags: + - User + /users/observable: + get: + description: Returns a User retrieval in a observable array + operationId: getUsersObservable + responses: + "200": + $ref: "#/responses/UserObservableResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Users in an observable array + tags: + - User + options: + description: CORS support + operationId: userOptions + responses: + "200": + $ref: "#/responses/CORSResponse" + tags: + - cors + "/users/{userIdPath}": + get: + description: Return a single User object from datastore as a Singleton + operationId: getUser + parameters: + - $ref: "#/parameters/userIdPath" + responses: + "200": + $ref: "#/responses/UserSingletonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a single User object + tags: + - User +definitions: + Address: + properties: + City: + description: City + type: string + Country: + description: Country full name + type: string + CountryCode: + description: Country Code + type: string + PostalCode: + description: Postal Code + type: string + State: + description: State full name + type: string + StateCode: + description: State Code + type: string + Street: + description: Street number and name + type: string + type: object + Cluster: + properties: + CreatedByID: + description: Created By + type: string + CreatedDate: + description: Created Date + type: string + Description: + description: Description + type: string + Environment: + description: Environment + type: string + Gateway: + description: Gateway + type: string + ID: + description: Record Id + type: string + IPAddress: + description: IP Address + type: string + LastModifiedByID: + description: Last Modified By + type: string + LastModifiedDate: + description: Last Modified Date + type: string + Name: + description: Cluster Name + type: string + OwnerID: + description: Owner + type: string + Ref: + description: External Reference + type: string + Status: + description: Status + type: string + Subnet: + description: Subnet + type: string + TenantID: + description: The ID of the tenant who owns this Database + type: string + Type: + description: Type + type: string + Zone: + description: Zone + type: string + type: object + ClusterRequest: + properties: + Data: + items: + $ref: "#/definitions/Cluster" + type: array + type: object + ClusterResponse: + description: An array of cluster objects + properties: + Data: + items: + $ref: "#/definitions/Cluster" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Database: + description: A Database provisioned and owned by a Tenant + properties: + Active: + description: Is this database active? + type: boolean + ClusterID: + description: The ID of the Cluster in which this database is deployed + type: string + CreatedByID: + description: Created By + type: string + CreatedDate: + description: Created Date + type: string + DSN: + description: Database connection string + type: string + DatabaseName: + description: The name of the physical database in the cluster + type: string + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + LastModifiedDate: + description: Last Modifed Date + type: string + Status: + description: The current status of this Tenant + type: string + TenantID: + description: The ID of the tenant who owns this Database + type: string + Type: + description: The type of Database (mysql, etc) + type: string + type: object + DatabaseRequest: + description: An array of Database objects + properties: + Data: + items: + $ref: "#/definitions/Database" + type: array + type: object + DatabaseResponse: + description: An array of Database objects + properties: + Data: + items: + $ref: "#/definitions/Database" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + DeleteResponse: + properties: + Data: + items: + $ref: "#/definitions/Message" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Error: + properties: + code: + format: int64 + type: integer + fields: + type: string + message: + type: string + type: object + Message: + properties: + Message: + type: string + Ref: + type: string + Status: + type: integer + type: object + Pagination: + properties: + Limit: + format: int64 + type: integer + POffset: + format: int64 + type: integer + PageSize: + format: int64 + type: integer + SetSize: + format: int64 + type: integer + type: object + RequestMeta: + properties: + TaxnexusAccount: + description: Account Number of the Reseller or OEM + type: string + required: + - TaxnexusAccount + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + Pagination: + $ref: "#/definitions/Pagination" + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + TaxnexusAccount: + description: Account Number used for recording transactions + type: string + type: object + Role: + description: A functional role within a Tenant + properties: + Auth0RoleID: + description: The corresponding Auth0 Role + type: string + CreatedByID: + description: Created By + type: string + CreatedDate: + description: Created Date + type: string + Description: + description: Role Description + type: string + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + LastModifiedDate: + description: Last Modifed Date + type: string + RoleName: + description: The name of this role + type: string + TenantID: + description: The ID of the Tenant that owns this Role + type: string + type: object + RoleRequest: + description: An array of Role objects + properties: + Date: + items: + $ref: "#/definitions/Role" + type: array + type: object + RoleResponse: + description: An array of Role objects + properties: + Data: + items: + $ref: "#/definitions/Role" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Template: + properties: + CompanyID: + description: Company + type: string + CreatedByID: + type: string + CreatedDate: + type: string + Description: + description: Description + type: string + HTML: + description: HTML Body + format: byte + type: string + ID: + description: Record Id + type: string + IsActive: + description: Active? + type: boolean + IsMaster: + description: Master Template? + type: boolean + LastModifiedByID: + type: string + LastModifiedDate: + type: string + Name: + description: Template Name + type: string + ObjectType: + description: Object + type: string + RecordTypeName: + description: Record Type Name + type: string + TenantID: + description: Tenant that owns this object instance + type: string + Type: + description: Type + type: string + URL: + description: URL + type: string + type: object + TemplateRequest: + description: An array of Templates + properties: + Data: + items: + $ref: "#/definitions/Template" + type: array + type: object + TemplateResponse: + description: An array of Templates + properties: + Data: + items: + $ref: "#/definitions/Template" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Tenant: + description: Account Tenant + properties: + AccountID: + description: The Account that owns this Tenant + type: string + Active: + description: Is this Tenant currently active? + type: boolean + CreatedByID: + description: Created By + type: string + CreatedDate: + description: Created Date + type: string + Databases: + items: + $ref: "#/definitions/Database" + type: array + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + LastModifiedDate: + description: Last Modifed Date + type: string + Roles: + items: + $ref: "#/definitions/Role" + type: array + Status: + description: The current status of this Tenant + type: string + TenantName: + description: Name of the Tenant Resource + type: string + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + Type: + description: The type of Tenant + type: string + Version: + description: The version number of the Tenant Onboarding system used to create this tenant + type: string + type: object + TenantRequest: + description: An array of Tenant objects + properties: + Data: + items: + $ref: "#/definitions/Tenant" + type: array + type: object + TenantResponse: + description: An array of Tenant objects + properties: + Data: + items: + $ref: "#/definitions/Tenant" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + TenantUser: + description: Relationship object that connects users to a tenant + properties: + AccessLevel: + description: The makeTenantUser access level for this User + type: string + AccountID: + description: Account ID + type: string + Auth0UserID: + description: Auth0 User ID + type: string + CompanyName: + description: Account Name + type: string + ContactID: + description: Contact ID + type: string + TaxnexusAccount: + description: Account + type: string + TenantActive: + description: Tenant active? + type: boolean + TenantID: + description: The Tenant ID + type: string + TenantName: + description: Tenant Name + type: string + TenantStatus: + description: Tenant Status + type: string + TenantType: + description: Tenant type + type: string + TenantVersion: + description: Tenant Version + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string + Username: + description: Username + type: string + type: object + User: + properties: + APIKey: + description: API Key + type: string + AboutMe: + description: About Me + type: string + AccountID: + description: Account ID + type: string + Address: + $ref: "#/definitions/Address" + Alias: + description: Alias + type: string + Auth0UserID: + description: Auth0 User Id + type: string + CommunityNickname: + description: Nickname + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact + type: string + CreatedByID: + description: Created User ID + type: string + CreatedDate: + description: Date Created + type: string + DelegatedApproverID: + description: Delegated Approver + type: string + Department: + description: Department + type: string + Division: + description: Division + type: string + Email: + description: Email address + type: string + EmployeeNumber: + description: Employee Number + type: string + EndOfDay: + description: Time day ends + type: string + Environment: + description: Environment + type: string + Extension: + description: Extension + type: string + FabricAPIKey: + description: Fabric API Key + type: string + Fax: + description: Fax + type: string + FirstName: + description: The first name + type: string + ForecastEnabled: + description: Allow Forecasting + type: boolean + FullPhotoURL: + description: Full Photo URL + type: string + ID: + description: Record ID + type: string + IsActive: + description: Active + type: boolean + IsPortalEnabled: + description: Is the user enabled for Communities? + type: boolean + IsProphilePhotoActive: + description: Has Profile Photo + type: boolean + IsSystemControlled: + type: boolean + LastIP: + description: IP address of last login + type: string + LastLogin: + description: Last login time + type: string + LastModifiedByID: + description: Last Modified User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + LastName: + description: The Last Name + type: string + LoginCount: + description: Number of times user has logged in + format: int64 + type: number + ManagerID: + description: Manager + type: string + MobilePhone: + description: Mobile + type: string + Name: + description: Name + type: string + OutOfOfficeMessage: + description: Out of office message + type: string + Phone: + description: Phone + type: string + PortalRole: + description: Portal Role Level + type: string + ProfileID: + description: Profile + type: string + ReceivesAdminEmails: + description: Info Emails + type: boolean + ReceivesAdminInfoEmails: + description: Admin Info Emails + type: boolean + SenderEmail: + description: Email Sender Address + type: string + SenderName: + description: Email Sender Name + type: string + Signature: + description: Email Signature + type: string + SmallPhotoURL: + description: Small Photo URL + type: string + StartOfDay: + description: The time day starts + type: string + TaxnexusAccount: + description: Account + type: string + TenantID: + description: Tenant ID associated with this user + type: string + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + TimeZone: + description: Time Zone + type: string + Title: + description: Title + type: string + UserRoleID: + description: Role + type: string + UserRoles: + items: + $ref: "#/definitions/UserRole" + type: array + UserType: + description: User Type + type: string + Username: + description: Username + type: string + type: object + UserRequest: + properties: + Data: + items: + $ref: "#/definitions/User" + type: array + type: object + UserResponse: + description: An array of Print-Ready ingest Objects + properties: + Data: + items: + $ref: "#/definitions/User" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + UserRole: + description: Relationship object that connects user to a role + properties: + AccountID: + description: Account Id + type: string + Auth0RoleID: + description: Linked role ID + type: string + Auth0UserID: + description: Auth0 User ID + type: string + CompanyName: + description: Company Name + type: string + ContactID: + description: Contact ID + type: string + RoleDescription: + description: Role description + type: string + RoleID: + description: The Role ID + type: string + RoleName: + description: Role Name + type: string + TaxnexusAccount: + description: Account Number + type: string + UserEmail: + description: User Email Address + type: string + UserFullName: + description: User Full Name + type: string + UserID: + description: The User ID + type: string + Username: + description: Username + type: string + type: object diff --git a/swagger/external/members-vernonkeenan.yaml b/swagger/external/members-vernonkeenan.yaml new file mode 100644 index 0000000..92cb895 --- /dev/null +++ b/swagger/external/members-vernonkeenan.yaml @@ -0,0 +1,3826 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "members" + description: "Membership Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@salesforcedevops.net" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/members/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + Auth0UserIdHeader: + description: Auth0 User Id + in: header + name: X-Auth0-UserId + required: false + type: string + AttendeeRequest: + description: An array of new Attendee records + in: body + name: attendeeRequest + required: true + schema: + $ref: "#/definitions/AttendeeRequest" + CertificateRequest: + description: An array of new Certificate records + in: body + name: certificateRequest + required: true + schema: + $ref: "#/definitions/CertificateRequest" + CourseLessonRequest: + description: An array of new CourseLesson records + in: body + name: courselessonRequest + required: true + schema: + $ref: "#/definitions/CourseLessonRequest" + clusterIdQuery: + description: Record Id of a Cluster + in: query + name: clusterId + required: false + type: string + ClusterRequest: + description: An array of Cluster records + in: body + name: ClusterRequest + required: true + schema: + $ref: "#/definitions/ClusterRequest" + CourseRequest: + description: An array of new Course records + in: body + name: courseRequest + required: true + schema: + $ref: "#/definitions/CourseRequest" + CourseSectionRequest: + description: An array of new CourseSection records + in: body + name: coursesectionRequest + required: true + schema: + $ref: "#/definitions/CourseSectionRequest" + OutgoingEmailMessageRequest: + description: An array of new Outgoing Email Message records + in: body + name: OutgoingEmailMessageRequest + required: true + schema: + $ref: "#/definitions/OutgoingEmailMessageRequest" + EnrollmentRequest: + description: An array of new Enrollment records + in: body + name: enrollmentRequest + required: true + schema: + $ref: "#/definitions/EnrollmentRequest" + EventRequest: + description: An array of new Event records + in: body + name: eventRequest + required: true + schema: + $ref: "#/definitions/EventRequest" + EventCategoryRequest: + description: An array of new Event records + in: body + name: eventCategoryRequest + required: true + schema: + $ref: "#/definitions/EventCategoryRequest" + FavoriteRequest: + description: An array of new Favorite records + in: body + name: favoriteRequest + required: true + schema: + $ref: "#/definitions/FavoriteRequest" + InvoiceRequest: + description: An array of new Invoice records + in: body + name: invoiceRequest + required: true + schema: + $ref: "#/definitions/InvoiceRequest" + IssuedCertificateRequest: + description: An array of new IssuedCertificate records + in: body + name: issuedCertificateRequest + required: true + schema: + $ref: "#/definitions/IssuedCertificateRequest" + LessonProgressRequest: + description: An array of new LessonProgress records + in: body + name: lessonprogressRequest + required: true + schema: + $ref: "#/definitions/LessonProgressRequest" + OrderRequest: + description: An array of new Order records + in: body + name: orderRequest + required: true + schema: + $ref: "#/definitions/OrderRequest" + PaymentMethodRequest: + description: An array of new PaymentMethod records + in: body + name: paymentMethodRequest + required: true + schema: + $ref: "#/definitions/PaymentMethodRequest" + PromptRequest: + description: An array of new Prompt records + in: body + name: promptRequest + required: true + schema: + $ref: "#/definitions/PromptRequest" + PromptCategoryRequest: + description: An array of PromptCategory objects + name: promptCategoryRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptCategoryRequest" + PromptTagRequest: + description: An array of PromptTag objects + name: promptTagRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptTagRequest" + PromptAnswerRequest: + description: An array of PromptAnswer objects + name: promptAnswerRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptAnswerRequest" + ResearchProjectCompanyRequest: + description: An array of new ResearchProjectCompany records + in: body + name: researchProjectCompanyRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectCompanyRequest" + researchProjectProductRequest: + description: An array of new ResearchProjectProduct records + in: body + name: researchProjectProductRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectProductRequest" + ResearchProjectServiceRequest: + description: An array of new ResearchProjectService records + in: body + name: researchProjectServiceRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectServiceRequest" + ResearchProjectDocumentRequest: + description: An array of new ResearchProjectDocument records + in: body + name: researchProjectDocumentRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectDocumentRequest" + ResearchProjectRequest: + description: An array of new ResearchProject records + in: body + name: researchProjectRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectRequest" + ResearchProjectTopicRequest: + description: An array of new ResearchProjectTopic records + in: body + name: researchProjectTopicRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectTopicRequest" + templateIdQuery: + description: Template ID + in: query + name: templateId + type: string + TemplateRequest: + description: An array of Template records + in: body + name: TemplateRequest + required: true + schema: + $ref: "#/definitions/TemplateRequest" + EmailMessageRequest: + description: An array of Email Message records + in: body + name: EmailMessageRequest + required: true + schema: + $ref: "#/definitions/EmailMessageRequest" + TenantRequest: + description: An array of Tenant records + in: body + name: TenantRequest + required: true + schema: + $ref: "#/definitions/TenantRequest" + TicketRequest: + description: An array of new Ticket records + in: body + name: ticketRequest + required: true + schema: + $ref: "#/definitions/TicketRequest" + TransactionRequest: + description: An array of new Transaction records + in: body + name: transactionRequest + required: true + schema: + $ref: "#/definitions/TransactionRequest" + UserRequest: + description: An array of User records + in: body + name: UserRequest + required: true + schema: + $ref: "#/definitions/UserRequest" + WebhookClerkRequest: + description: An array of new WebhookClerk records + in: body + name: webhookclerkRequest + required: true + schema: + $ref: "#/definitions/WebhookClerkRequest" + activeQuery: + description: Retrieve active records only? + in: query + name: active + required: false + type: boolean + auth0UserIdQuery: + description: External Auth0 User ID + in: query + name: auth0UserId + required: false + type: string + userIdQuery: + description: Internal User ID + in: query + name: userId + required: false + type: string + userIdQueryRequired: + description: Internal User ID + in: query + name: userId + required: true + type: string + contactIdQuery: + description: Internal Contact ID (links to Account) + in: query + name: contactId + required: false + type: string + databaseIdQuery: + description: Record Id of a Database + in: query + name: databaseId + type: string + required: true + databaseRequest: + description: An array of Database records + in: body + name: DatabaseRequest + required: true + schema: + $ref: "#/definitions/DatabaseRequest" + documentRequest: + description: An array of Document records + in: body + name: DocumentRequest + required: true + schema: + $ref: "#/definitions/DocumentRequest" + emailMessageIdQuery: + description: Email Message ID + in: query + name: emailMessageId + type: string + emailQuery: + description: Email address + in: query + name: email + required: false + type: string + idQuery: + description: Unique Record ID + in: query + name: id + required: false + type: string + objectTypeQuery: + description: Object Type Name + in: query + name: objectType + type: string + isMasterQuery: + description: Is Master Template? + in: query + name: isMaster + type: boolean + limitQuery: + description: How many objects to return at one time + format: int64 + in: query + name: limit + required: false + type: integer + offsetQuery: + description: How many objects to skip? + format: int64 + in: query + name: offset + required: false + type: integer +responses: + AccessForbidden: + description: Access forbidden, account lacks access + headers: + Access-Control-Allow-Origin: + type: string + x-nullable: true + schema: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + AttendeeResponse: + description: Attendee Response Object + schema: + $ref: "#/definitions/AttendeeResponse" + CertificateResponse: + description: Certificate Response Object + schema: + $ref: "#/definitions/CertificateResponse" + ClusterResponse: + description: Response with Cluster objects + schema: + $ref: "#/definitions/ClusterResponse" + CourseLessonResponse: + description: CourseLesson Response Object + schema: + $ref: "#/definitions/CourseLessonResponse" + CourseResponse: + description: Course Response Object + schema: + $ref: "#/definitions/CourseResponse" + CourseSectionResponse: + description: CourseSection Response Object + schema: + $ref: "#/definitions/CourseSectionResponse" + DatabaseResponse: + description: Response with Database objects + schema: + $ref: "#/definitions/DatabaseResponse" + DocumentResponse: + description: Document Response Object + schema: + $ref: "#/definitions/DocumentResponse" + EmailMessagesResponse: + description: "Array of Email Messages" + schema: + $ref: "#/definitions/EmailMessagesResponse" + OutgoingEmailMessagesResponse: + description: "Array of Outgoing Email Messages" + schema: + $ref: "#/definitions/OutgoingEmailMessagesResponse" + EnrollmentResponse: + description: Enrollment Response Object + schema: + $ref: "#/definitions/EnrollmentResponse" + EventResponse: + description: Event Response Object + schema: + $ref: "#/definitions/EventResponse" + EventCategoryResponse: + description: Event Response Object + schema: + $ref: "#/definitions/EventCategoryResponse" + FavoriteResponse: + description: Favorite Response Object + schema: + $ref: "#/definitions/FavoriteResponse" + InvoiceResponse: + description: Invoice Response Object + schema: + $ref: "#/definitions/InvoiceResponse" + IssuedCertificateResponse: + description: IssuedCertificate Response Object + schema: + $ref: "#/definitions/IssuedCertificateResponse" + LessonProgressResponse: + description: LessonProgress Response Object + schema: + $ref: "#/definitions/LessonProgressResponse" + NotFound: + description: Resource was not found + schema: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + OrderResponse: + description: Order Response Object + schema: + $ref: "#/definitions/OrderResponse" + PaymentMethodResponse: + description: PaymentMethod Response Object + schema: + $ref: "#/definitions/PaymentMethodResponse" + PromptResponse: + description: Response with Prompt objects + schema: + $ref: "#/definitions/PromptResponse" + PromptCategoryResponse: + description: Response with PromptCategory objects + schema: + $ref: "#/definitions/PromptCategoryResponse" + PromptAnswerResponse: + description: Response with PromptAnswer objects + schema: + $ref: "#/definitions/PromptAnswerResponse" + PromptTagResponse: + description: Response with PromptTag objects + schema: + $ref: "#/definitions/PromptTagResponse" + ResearchProjectCompanyResponse: + description: ResearchProjectCompany Response Object + schema: + $ref: "#/definitions/ResearchProjectCompanyResponse" + ResearchProjectDocumentResponse: + description: ResearchProjectDocument Response Object + schema: + $ref: "#/definitions/ResearchProjectDocumentResponse" + ResearchProjectProductResponse: + description: ResearchProjectProduct Response Object + schema: + $ref: "#/definitions/ResearchProjectProductResponse" + ResearchProjectServiceResponse: + description: ResearchProjectService Response Object + schema: + $ref: "#/definitions/ResearchProjectServiceResponse" + ResearchProjectResponse: + description: ResearchProject Response Object + schema: + $ref: "#/definitions/ResearchProjectResponse" + ResearchProjectTopicResponse: + description: ResearchProjectTopic Response Object + schema: + $ref: "#/definitions/ResearchProjectTopicResponse" + ServerError: + description: Server Internal Error + schema: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + TenantResponse: + description: Response with Tenant objects + schema: + $ref: "#/definitions/TenantResponse" + TemplateResponse: + description: Response with Template objects + schema: + $ref: "#/definitions/TemplateResponse" + TicketResponse: + description: Ticket Response Object + schema: + $ref: "#/definitions/TicketResponse" + TransactionResponse: + description: Transaction Response Object + schema: + $ref: "#/definitions/TransactionResponse" + Unauthorized: + description: Access Unauthorized, invalid API-KEY was used + schema: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + UnprocessableEntity: + description: Unprocessable Entity, likely a bad parameter + schema: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + UserResponse: + description: Response with User objects + schema: + $ref: "#/definitions/UserResponse" + WebhookClerkResponse: + description: WebhookClerk Response Object + schema: + $ref: "#/definitions/WebhookClerkResponse" +paths: + /attendees: + get: + description: Return a list of Attendee records from the datastore + operationId: getAttendees + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/AttendeeResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Attendees + tags: + - Attendees + post: + description: Create Attendees + operationId: postAttendees + parameters: + - $ref: "#/parameters/AttendeeRequest" + responses: + "200": + $ref: "#/responses/AttendeeResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Attendees + tags: + - Attendees + put: + description: Update Attendee + operationId: putAttendees + parameters: + - $ref: "#/parameters/AttendeeRequest" + responses: + "200": + $ref: "#/responses/AttendeeResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Attendee + tags: + - Attendees + /certificates: + get: + description: Return a list of Certificate records from the datastore + operationId: getCertificates + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Certificates + tags: + - Certificates + post: + description: Create Certificates + operationId: postCertificates + parameters: + - $ref: "#/parameters/CertificateRequest" + responses: + "200": + $ref: "#/responses/CertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Certificates + tags: + - Certificates + put: + description: Update Certificate + operationId: putCertificates + parameters: + - $ref: "#/parameters/CertificateRequest" + responses: + "200": + $ref: "#/responses/CertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Certificate + tags: + - Certificates + /clusters: + get: + description: Return a list of Cluster records from the datastore + operationId: getClusters + parameters: + - $ref: "#/parameters/clusterIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Clusters + tags: + - Clusters + post: + description: Create Clusters + operationId: postClusters + parameters: + - $ref: "#/parameters/ClusterRequest" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Clusters + tags: + - Clusters + put: + description: Update Cluster + operationId: putClusters + parameters: + - $ref: "#/parameters/ClusterRequest" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Clustera + tags: + - Clusters + /courselessons: + get: + operationId: getCourseLessons + security: + - ApiKeyAuth: [] + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of CourseLessons + tags: + - Courses + post: + operationId: postCourseLessons + security: + - ApiKeyAuth: [] + parameters: + - $ref: "#/parameters/CourseLessonRequest" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new CourseLesson + tags: + - Courses + put: + security: + - ApiKeyAuth: [] + operationId: updateCourseLessons + parameters: + - $ref: "#/parameters/CourseLessonRequest" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing CourseLesson + tags: + - Courses + /courses: + get: + security: + - ApiKeyAuth: [] + operationId: getCourses + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of Courses + tags: + - Courses + post: + security: + - ApiKeyAuth: [] + operationId: postCourses + parameters: + - $ref: "#/parameters/CourseRequest" + responses: + "200": + $ref: "#/responses/CourseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new Course + tags: + - Courses + put: + security: + - ApiKeyAuth: [] + operationId: updateCourses + parameters: + - $ref: "#/parameters/CourseRequest" + responses: + "200": + $ref: "#/responses/CourseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing Course + tags: + - Courses + /coursesections: + get: + security: + - ApiKeyAuth: [] + operationId: getCourseSections + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of CourseSections + tags: + - Courses + post: + security: + - ApiKeyAuth: [] + operationId: postCourseSections + parameters: + - $ref: "#/parameters/CourseSectionRequest" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new CourseSection + tags: + - Courses + put: + security: + - ApiKeyAuth: [] + operationId: updateCourseSections + parameters: + - $ref: "#/parameters/CourseSectionRequest" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing CourseSection + tags: + - Courses + /databases: + get: + description: Return a list of Database records from the datastore + operationId: getDatabases + parameters: + - $ref: "#/parameters/databaseIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Databases + tags: + - Databases + post: + description: Create Databases + operationId: postDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Databases + tags: + - Databases + put: + description: Update Database + operationId: putDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Databases + tags: + - Databases + /documents: + get: + description: Return a list of Document records from the datastore + operationId: getDocuments + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Documents + tags: + - Documents + post: + description: Create Documents + operationId: postDocuments + parameters: + - $ref: "#/parameters/documentRequest" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Documents + tags: + - Documents + put: + description: Update Document + operationId: putDocuments + parameters: + - $ref: "#/parameters/documentRequest" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Documents + tags: + - Documents + /emailmessages: + get: + security: + - ApiKeyAuth: [] + summary: "Get email messages from data store" + operationId: getEmailMessages + description: "Retrieves email messages from workflow storage" + parameters: + - $ref: "#/parameters/emailMessageIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + tags: + - Emails + responses: + "200": + $ref: "#/responses/EmailMessagesResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + post: + security: + - ApiKeyAuth: [] + summary: Add new email messages to the outgoing queue + operationId: postEmailMessages + description: Insert new email messages into workflow storage + parameters: + - $ref: "#/parameters/EmailMessageRequest" + responses: + "200": + $ref: "#/responses/EmailMessagesResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + tags: + - Emails + /outgoingemailmessages: + get: + security: + - ApiKeyAuth: [] + summary: "Get email messages from data store" + operationId: getOutgoingEmailMessages + description: "Retrieves email messages from workflow storage" + parameters: + - $ref: "#/parameters/emailMessageIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + tags: + - Emails + responses: + "200": + $ref: "#/responses/OutgoingEmailMessagesResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + post: + security: + - ApiKeyAuth: [] + summary: Add new email messages to the outgoing queue + operationId: postOutgoingEmailMessages + description: Insert new email messages into workflow storage + parameters: + - $ref: "#/parameters/OutgoingEmailMessageRequest" + responses: + "200": + $ref: "#/responses/OutgoingEmailMessagesResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + tags: + - Emails + /enrollments: + get: + description: Return a list of Enrollment records from the datastore + operationId: getEnrollments + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/EnrollmentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Enrollments + tags: + - Enrollments + post: + description: Create Enrollments + operationId: postEnrollments + parameters: + - $ref: "#/parameters/EnrollmentRequest" + responses: + "200": + $ref: "#/responses/EnrollmentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Enrollments + tags: + - Enrollments + put: + description: Update Enrollment + operationId: putEnrollments + parameters: + - $ref: "#/parameters/EnrollmentRequest" + responses: + "200": + $ref: "#/responses/EnrollmentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Enrollment + tags: + - Enrollments + /eventcategories: + get: + security: + - ApiKeyAuth: [] + operationId: getEventCategories + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/idQuery" + responses: + "200": + $ref: "#/responses/EventCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of Eventcategories + tags: + - Events + post: + security: + - ApiKeyAuth: [] + operationId: postEventCategories + parameters: + - $ref: "#/parameters/EventCategoryRequest" + responses: + "200": + $ref: "#/responses/EventCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new EventCategory + tags: + - Events + /events: + get: + security: + - ApiKeyAuth: [] + operationId: getEvents + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/idQuery" + responses: + "200": + $ref: "#/responses/EventResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of Events + tags: + - Events + post: + security: + - ApiKeyAuth: [] + operationId: postEvents + parameters: + - $ref: "#/parameters/EventRequest" + responses: + "200": + $ref: "#/responses/EventResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new Event + tags: + - Events + /favorites: + get: + description: Return a list of Favorite records from the datastore + operationId: getFavorites + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/FavoriteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Favorites + tags: + - Favorites + post: + description: Create Favorites + operationId: postFavorites + parameters: + - $ref: "#/parameters/FavoriteRequest" + responses: + "200": + $ref: "#/responses/FavoriteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Favorites + tags: + - Favorites + put: + description: Update Favorite + operationId: putFavorites + parameters: + - $ref: "#/parameters/FavoriteRequest" + responses: + "200": + $ref: "#/responses/FavoriteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Favorite + tags: + - Favorites + /invoices: + get: + description: Return a list of Invoice records from the datastore + operationId: getInvoices + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/InvoiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Invoices + tags: + - Invoices + post: + description: Create Invoices + operationId: postInvoices + parameters: + - $ref: "#/parameters/InvoiceRequest" + responses: + "200": + $ref: "#/responses/InvoiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Invoices + tags: + - Invoices + put: + description: Update Invoice + operationId: putInvoices + parameters: + - $ref: "#/parameters/InvoiceRequest" + responses: + "200": + $ref: "#/responses/InvoiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Invoice + tags: + - Invoices + /issuedcertificates: + get: + description: Return a list of IssuedCertificate records from the datastore + operationId: getIssuedCertificates + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/IssuedCertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list IssuedCertificates + tags: + - IssuedCertificates + post: + description: Create IssuedCertificates + operationId: postIssuedCertificates + parameters: + - $ref: "#/parameters/IssuedCertificateRequest" + responses: + "200": + $ref: "#/responses/IssuedCertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new IssuedCertificates + tags: + - IssuedCertificates + put: + description: Update IssuedCertificate + operationId: putIssuedCertificates + parameters: + - $ref: "#/parameters/IssuedCertificateRequest" + responses: + "200": + $ref: "#/responses/IssuedCertificateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update IssuedCertificate + tags: + - IssuedCertificates + /lessonprogress: + get: + description: Return a list of LessonProgress records from the datastore + operationId: getLessonProgresses + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/LessonProgressResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list LessonProgresses + tags: + - LessonProgress + post: + description: Create LessonProgresses + operationId: postLessonProgresses + parameters: + - $ref: "#/parameters/LessonProgressRequest" + responses: + "200": + $ref: "#/responses/LessonProgressResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new LessonProgresses + tags: + - LessonProgress + put: + description: Update LessonProgress + operationId: putLessonProgresses + parameters: + - $ref: "#/parameters/LessonProgressRequest" + responses: + "200": + $ref: "#/responses/LessonProgressResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update LessonProgress + tags: + - LessonProgress + /orders: + get: + description: Return a list of Order records from the datastore + operationId: getOrders + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/OrderResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Orders + tags: + - Orders + post: + description: Create Orders + operationId: postOrders + parameters: + - $ref: "#/parameters/OrderRequest" + responses: + "200": + $ref: "#/responses/OrderResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Orders + tags: + - Orders + put: + description: Update Order + operationId: putOrders + parameters: + - $ref: "#/parameters/OrderRequest" + responses: + "200": + $ref: "#/responses/OrderResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Order + tags: + - Orders + /paymentmethods: + get: + description: Return a list of PaymentMethod records from the datastore + operationId: getPaymentMethods + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PaymentMethodResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list PaymentMethods + tags: + - PaymentMethods + post: + description: Create PaymentMethods + operationId: postPaymentMethods + parameters: + - $ref: "#/parameters/PaymentMethodRequest" + responses: + "200": + $ref: "#/responses/PaymentMethodResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PaymentMethods + tags: + - PaymentMethods + put: + description: Update PaymentMethod + operationId: putPaymentMethods + parameters: + - $ref: "#/parameters/PaymentMethodRequest" + responses: + "200": + $ref: "#/responses/PaymentMethodResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PaymentMethod + tags: + - PaymentMethods + /prompts: + get: + description: Return a list of Prompt records from the datastore + operationId: getPrompts + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of Prompts + tags: + - Prompts + post: + description: Create Prompts + operationId: postPrompts + parameters: + - $ref: "#/parameters/PromptRequest" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Prompts + tags: + - Prompts + put: + description: Update Prompt + operationId: putPrompts + parameters: + - $ref: "#/parameters/PromptRequest" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Prompts + tags: + - Prompts + /promptanswers: + get: + description: Return a list of PromptAnswers records from the datastore + operationId: getPromptAnswers + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptResponses + tags: + - Prompts + post: + description: Create PromptAnswers + operationId: postPromptAnswers + parameters: + - $ref: "#/parameters/PromptAnswerRequest" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptResponses + tags: + - Prompts + put: + description: Update PromptAnswers + operationId: putPromptAnsweers + parameters: + - $ref: "#/parameters/PromptAnswerRequest" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptResponse + tags: + - Prompts + /promptcategories: + get: + description: Return a list of PromptCategory records from the datastore + operationId: getPromptCategories + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptCategories + tags: + - Prompts + post: + description: Create PromptCategories + operationId: postPromptCategories + parameters: + - $ref: "#/parameters/PromptCategoryRequest" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptCategories + tags: + - Prompts + put: + description: Update PromptCategory + operationId: putPromptCategories + parameters: + - $ref: "#/parameters/PromptCategoryRequest" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptCategories + tags: + - Prompts + /prompttags: + get: + description: Return a list of PromptTag records from the datastore + operationId: getPromptTags + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptTags + tags: + - Prompts + post: + description: Create PromptTags in Taxnexus + operationId: postPromptTags + parameters: + - $ref: "#/parameters/PromptTagRequest" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptTags + tags: + - Prompts + put: + description: Update PromptTag in Taxnexus + operationId: putPromptTags + parameters: + - $ref: "#/parameters/PromptTagRequest" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptTags + tags: + - Prompts + /researchprojectcompanies: + get: + description: Return a list of ResearchProjectCompany records from the datastore + operationId: getResearchProjectCompanies + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectCompanies + tags: + - ResearchProjects + post: + description: Create ResearchProjectCompanies in the system + operationId: postResearchProjectCompanies + parameters: + - $ref: "#/parameters/Auth0UserIdHeader" + - $ref: "#/parameters/ResearchProjectCompanyRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectCompanies + tags: + - ResearchProjects + put: + description: Update ResearchProjectCompany in the system + operationId: putResearchProjectCompanies + parameters: + - $ref: "#/parameters/Auth0UserIdHeader" + - $ref: "#/parameters/ResearchProjectCompanyRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectCompanies + tags: + - ResearchProjects + /researchprojectdocuments: + get: + description: Return a list of ResearchProjectDocument records from the datastore + operationId: getResearchProjectDocuments + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectDocuments + tags: + - ResearchProjects + post: + description: Create ResearchProjectDocuments in the system + operationId: postResearchProjectDocuments + parameters: + - $ref: "#/parameters/ResearchProjectDocumentRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectDocuments + tags: + - ResearchProjects + put: + description: Update ResearchProjectDocument in the system + operationId: putResearchProjectDocuments + parameters: + - $ref: "#/parameters/ResearchProjectDocumentRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectDocuments + tags: + - ResearchProjects + /researchprojectservices: + get: + description: Return a list of ResearchProjectService records from the datastore + operationId: getResearchProjectServices + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectServices + tags: + - ResearchProjects + post: + description: Create ResearchProjectServices in the system + operationId: postResearchProjectServices + parameters: + - $ref: "#/parameters/ResearchProjectServiceRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "201": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectServices + tags: + - ResearchProjects + put: + description: Update ResearchProjectService in the system + operationId: putResearchProjectServices + parameters: + - $ref: "#/parameters/ResearchProjectServiceRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "201": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectServices + tags: + - ResearchProjects + + /researchprojectproducts: + get: + description: Return a list of ResearchProjectProduct records from the datastore + operationId: getResearchProjectProducts + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectProducts + tags: + - ResearchProjects + post: + description: Create ResearchProjectProducts in the system + operationId: postResearchProjectProducts + parameters: + - $ref: "#/parameters/researchProjectProductRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectProducts + tags: + - ResearchProjects + put: + description: Update ResearchProjectProduct in the system + operationId: putResearchProjectProducts + parameters: + - $ref: "#/parameters/researchProjectProductRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectProducts + tags: + - ResearchProjects + /researchprojects: + get: + description: Return a list of ResearchProject records from the datastore + operationId: getResearchProjects + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjects + tags: + - ResearchProjects + post: + description: Create ResearchProjects in the system + operationId: postResearchProjects + parameters: + - $ref: "#/parameters/ResearchProjectRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjects + tags: + - ResearchProjects + put: + description: Update ResearchProject in the system + operationId: putResearchProjects + parameters: + - $ref: "#/parameters/ResearchProjectRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjects + tags: + - ResearchProjects + /researchprojecttopics: + get: + description: Return a list of ResearchProjectTopic records from the datastore + operationId: getResearchProjectTopics + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectTopics + tags: + - ResearchProjects + post: + description: Create ResearchProjectTopics in the system + operationId: postResearchProjectTopics + parameters: + - $ref: "#/parameters/ResearchProjectTopicRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectTopics + tags: + - ResearchProjects + put: + description: Update ResearchProjectTopic in the system + operationId: putResearchProjectTopics + parameters: + - $ref: "#/parameters/ResearchProjectTopicRequest" + - $ref: "#/parameters/Auth0UserIdHeader" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectTopics + tags: + - ResearchProjects + /tenants: + get: + description: Return a list of Tenant records from the datastore + operationId: getTenants + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Tenants + tags: + - Tenants + post: + description: Create Tenants + operationId: postTenants + parameters: + - $ref: "#/parameters/TenantRequest" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Tenants + tags: + - Tenants + put: + description: Update Tenant + operationId: putTenants + parameters: + - $ref: "#/parameters/TenantRequest" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Tenants + tags: + - Tenants + /templates: + get: + description: Return a list of Templates from the datastore + operationId: getTemplates + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/templateIdQuery" + - $ref: "#/parameters/isMasterQuery" + - $ref: "#/parameters/objectTypeQuery" + responses: + "200": + $ref: "#/responses/TemplateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Templates + tags: + - Templates + post: + description: Create new Templates + operationId: postTemplates + parameters: + - $ref: "#/parameters/TemplateRequest" + responses: + "200": + $ref: "#/responses/TemplateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Templates + tags: + - Templates + /tickets: + get: + description: Return a list of Ticket records from the datastore + operationId: getTickets + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/TicketResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Tickets + tags: + - Tickets + post: + description: Create Tickets + operationId: postTickets + parameters: + - $ref: "#/parameters/TicketRequest" + responses: + "200": + $ref: "#/responses/TicketResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Tickets + tags: + - Tickets + put: + description: Update Ticket + operationId: putTickets + parameters: + - $ref: "#/parameters/TicketRequest" + responses: + "200": + $ref: "#/responses/TicketResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Ticket + tags: + - Tickets + /transactions: + get: + description: Return a list of Transaction records from the datastore + operationId: getTransactions + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/TransactionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of Transactions + tags: + - Transactions + post: + description: Create Transactions + operationId: postTransactions + parameters: + - $ref: "#/parameters/TransactionRequest" + responses: + "200": + $ref: "#/responses/TransactionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Transactions + tags: + - Transactions + put: + description: Update Transaction + operationId: putTransactions + parameters: + - $ref: "#/parameters/TransactionRequest" + responses: + "200": + $ref: "#/responses/TransactionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Transaction + tags: + - Transactions + /users/onboard: + post: + description: Async onboard new users + operationId: postUsersOnboard + parameters: + - $ref: "#/parameters/UserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Async onboard new users + tags: + - Users + /webhooks/clerk: + post: + description: Clerk webhook + operationId: postWebhooksClerk + parameters: + - $ref: "#/parameters/WebhookClerkRequest" + responses: + "201": + $ref: "#/responses/WebhookClerkResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Clerk webhook + tags: + - Webhooks + /users: + get: + description: Return a list of User records from the datastore + operationId: getUsers + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/emailQuery" + - $ref: "#/parameters/auth0UserIdQuery" + - $ref: "#/parameters/userIdQuery" + - $ref: "#/parameters/contactIdQuery" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Users + tags: + - Users + post: + description: Create new Users + operationId: postUsers + parameters: + - $ref: "#/parameters/UserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Users + tags: + - Users + put: + description: Update existing users + operationId: putUsers + parameters: + - $ref: "#/parameters/UserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update existing users + tags: + - Users +definitions: + AttendeeRequest: + description: An array of Attendee objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/attendee.yaml#/Attendee" + type: array + type: object + AttendeeResponse: + description: An array of Attendee objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/attendee.yaml#/Attendee" + type: array + type: object + CertificateRequest: + description: An array of Certificate objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/certificate.yaml#/Certificate" + type: array + type: object + CertificateResponse: + description: An array of Certificate objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/certificate.yaml#/Certificate" + type: array + type: object + ClusterRequest: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/cluster.yaml#/Cluster" + type: array + type: object + ClusterResponse: + description: An array of cluster objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/cluster.yaml#/Cluster" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseLessonRequest: + description: An array of CourseLesson objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-lesson.yaml#/CourseLesson" + type: array + type: object + CourseLessonResponse: + description: An array of CourseLesson objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-lesson.yaml#/CourseLesson" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseRequest: + description: An array of Course objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course.yaml#/Course" + type: array + type: object + CourseResponse: + description: An array of Course objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/course.yaml#/Course" + type: array + type: object + CourseSectionRequest: + description: An array of CourseSection objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-section.yaml#/CourseSection" + type: array + type: object + CourseSectionResponse: + description: An array of CourseSection objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/course-section.yaml#/CourseSection" + type: array + type: object + DatabaseRequest: + description: An array of Database objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/database.yaml#/Database" + type: array + type: object + DatabaseResponse: + description: An array of Database objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/database.yaml#/Database" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + DocumentRequest: + description: An array of Document objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/document.yaml#/Document" + type: array + type: object + DocumentResponse: + description: An array of Document objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/document.yaml#/Document" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + EmailMessageRequest: + description: An array Send Email Message objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/email-message.yaml#/EmailMessage" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + EmailMessagesResponse: + description: An array user objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/email-message.yaml#/EmailMessage" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + EnrollmentRequest: + description: An array of Enrollment objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/enrollment.yaml#/Enrollment" + type: array + type: object + EnrollmentResponse: + description: An array of Enrollment objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/enrollment.yaml#/Enrollment" + type: array + type: object + EventRequest: + description: An array of Event objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/event.yaml#/Event" + type: array + type: object + EventResponse: + description: An array of Event objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/event.yaml#/Event" + type: array + type: object + EventCategoryRequest: + description: An array of EventCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/event-category.yaml#/EventCategory" + type: array + type: object + EventCategoryResponse: + description: An array of EventCategory objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/event-category.yaml#/EventCategory" + type: array + type: object + FavoriteRequest: + description: An array of Favorite objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/favorite.yaml#/Favorite" + type: array + type: object + FavoriteResponse: + description: An array of Favorite objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/favorite.yaml#/Favorite" + type: array + type: object + InvoiceRequest: + description: An array of Invoice objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/invoice.yaml#/Invoice" + type: array + type: object + InvoiceResponse: + description: An array of Invoice objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/invoice.yaml#/Invoice" + type: array + type: object + IssuedCertificateRequest: + description: An array of IssuedCertificate objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/issued-certificate.yaml#/IssuedCertificate" + type: array + type: object + IssuedCertificateResponse: + description: An array of IssuedCertificate objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/issued-certificate.yaml#/IssuedCertificate" + type: array + type: object + LessonProgressRequest: + description: An array of LessonProgress objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/lesson-progress.yaml#/LessonProgress" + type: array + type: object + LessonProgressResponse: + description: An array of LessonProgress objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/lesson-progress.yaml#/LessonProgress" + type: array + type: object + OutgoingEmailMessageRequest: + description: An array New Email Message objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/outgoing-email-message.yaml#/OutgoingEmailMessage" + type: array + type: object + OutgoingEmailMessagesResponse: + description: An array New Email Message objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/outgoing-email-message.yaml#/OutgoingEmailMessage" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + OrderRequest: + description: An array of Order objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/order.yaml#/Order" + type: array + type: object + OrderResponse: + description: An array of Order objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/order.yaml#/Order" + type: array + type: object + Pagination: + properties: + Limit: + format: int64 + type: integer + POffset: + format: int64 + type: integer + PageSize: + format: int64 + type: integer + SetSize: + format: int64 + type: integer + type: object + PaymentMethodRequest: + description: An array of PaymentMethod objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/payment-method.yaml#/PaymentMethod" + type: array + type: object + PaymentMethodResponse: + description: An array of PaymentMethod objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/payment-method.yaml#/PaymentMethod" + type: array + type: object + PromptAnswerRequest: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-answer.yaml#/PromptAnswer" + type: array + type: object + PromptAnswerResponse: + description: An array of PromptResponse objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-answer.yaml#/PromptAnswer" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + PromptRequest: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt.yaml#/Prompt" + type: array + type: object + PromptResponse: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt.yaml#/Prompt" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + PromptCategoryRequest: + description: An array of PromptCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-category.yaml#/PromptCategory" + type: array + type: object + PromptCategoryResponse: + description: An array of PromptCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-category.yaml#/PromptCategory" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + PromptTagRequest: + description: An array of PromptTag objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-tag.yaml#/PromptTag" + type: array + type: object + PromptTagResponse: + description: An array of PromptTag objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-tag.yaml#/PromptTag" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + RequestMeta: + properties: + ExternalAccount: + description: Account Number of the Reseller or OEM + type: string + x-nullable: true + required: + - ExternalAccount + type: object + ResearchProjectCompanyRequest: + description: An array of ResearchProjectCompany objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-company.yaml#/ResearchProjectCompany" + type: array + type: object + ResearchProjectCompanyResponse: + description: An array of ResearchProjectCompany objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-company.yaml#/ResearchProjectCompany" + type: array + type: object + ResearchProjectRequest: + description: An array of ResearchProject objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project.yaml#/ResearchProject" + type: array + type: object + ResearchProjectResponse: + description: An array of ResearchProject objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project.yaml#/ResearchProject" + type: array + type: object + ResearchProjectDocumentRequest: + description: An array of ResearchProjectDocumentRequest objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-document.yaml#/ResearchProjectDocument" + type: array + type: object + ResearchProjectDocumentResponse: + description: An array of ResearchProjectDocumentResponse objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-document.yaml#/ResearchProjectDocument" + type: array + type: object + ResearchProjectProductRequest: + description: An array of ResearchProjectProduct objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-product.yaml#/ResearchProjectProduct" + type: array + type: object + ResearchProjectProductResponse: + description: An array of ResearchProjectProduct objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-product.yaml#/ResearchProjectProduct" + type: array + type: object + ResearchProjectServiceResponse: + description: An array of ResearchProjectService objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-service.yaml#/ResearchProjectService" + type: array + type: object + ResearchProjectServiceRequest: + description: An array of ResearchProjectService objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-service.yaml#/ResearchProjectService" + type: array + type: object + ResearchProjectTopicRequest: + description: An array of ResearchProjectTopic objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-topic.yaml#/ResearchProjectTopic" + type: array + type: object + ResearchProjectTopicResponse: + description: An array of ResearchProjectTopic objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-topic.yaml#/ResearchProjectTopic" + type: array + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + Pagination: + $ref: "#/definitions/Pagination" + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object + RoleRequest: + description: An array of Role objects + properties: + Date: + items: + $ref: "../../lib/swagger/defs/role.yaml#/Role" + type: array + type: object + RoleResponse: + description: An array of Role objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/role.yaml#/Role" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + TemplateRequest: + description: An array of Templates + properties: + Data: + items: + $ref: "../../lib/swagger/defs/template.yaml#/Template" + type: array + type: object + TemplateResponse: + description: An array of Templates + properties: + Data: + items: + $ref: "../../lib/swagger/defs/template.yaml#/Template" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + TenantRequest: + description: An array of Tenant objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/tenant.yaml#/Tenant" + type: array + type: object + TenantResponse: + description: An array of Tenant objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/tenant.yaml#/Tenant" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + TicketRequest: + description: An array of Ticket objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/ticket.yaml#/Ticket" + type: array + type: object + TicketResponse: + description: An array of Ticket objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/ticket.yaml#/Ticket" + type: array + type: object + TransactionRequest: + description: An array of Transaction objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/transaction.yaml#/Transaction" + type: array + type: object + TransactionResponse: + description: An array of Transaction objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/transaction.yaml#/Transaction" + type: array + type: object + UserRequest: + properties: + Data: + items: + $ref: "../../lib/swagger/defs/user.yaml#/User" + type: array + type: object + UserResponse: + description: An array of Print-Ready ingest Objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/user.yaml#/User" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + WebhookClerkRequest: + description: Clerk webhook object + properties: + object: + type: string + type: + description: Clerk Name + type: string + data: + type: object + type: object + ClerkUser: + description: Clerk user object + type: object + properties: + external_id: + type: string + x-nullable: true + description: |- + The ID of the user as used in your external systems or your previous authentication solution. + Must be unique across your instance. + first_name: + type: string + x-nullable: true + description: The first name to assign to the user + last_name: + type: string + x-nullable: true + description: The last name to assign to the user + email_address: + type: array + items: + type: string + x-nullable: true + description: |- + Email addresses to add to the user. + Must be unique across your instance. + The first email address will be set as the user's primary email address. + phone_number: + type: array + items: + type: string + x-nullable: true + description: |- + Phone numbers to add to the user. + Must be unique across your instance. + The first phone number will be set as the user's primary phone number. + web3_wallet: + type: array + items: + type: string + x-nullable: true + description: |- + Web3 wallets to add to the user. + Must be unique across your instance. + The first wallet will be set as the user's primary wallet. + username: + type: string + x-nullable: true + description: |- + The username to give to the user. + It must be unique across your instance. + password: + type: string + x-nullable: true + description: |- + The plaintext password to give the user. + Must be at least 8 characters long, and can not be in any list of hacked passwords. + password_digest: + type: string + x-nullable: true + description: |- + In case you already have the password digests and not the passwords, you can use them for the newly created user via this property. + The digests should be generated with one of the supported algorithms. + The hashing algorithm can be specified using the `password_hasher` property. + password_hasher: + type: string + x-nullable: true + description: |- + The hashing algorithm that was used to generate the password digest. + The algorithms we support at the moment are [bcrypt](https://en.wikipedia.org/wiki/Bcrypt), md5, pbkdf2_sha256, [pbkdf2_sha256_django](https://docs.djangoproject.com/en/4.0/topics/auth/passwords/), [scrypt_firebase](https://firebaseopensource.com/projects/firebase/scrypt/) and 2 [argon2](https://argon2.online/) variants, argon2i and argon2id. + Each of the above expects the incoming digest to be of a particular format. + + More specifically: + + **bcrypt:** The digest should be of the following form: + + `$$$` + + **md5:** The digest should follow the regular form e.g.: + + `5f4dcc3b5aa765d61d8327deb882cf99` + + **pbkdf2_sha256:** This is the PBKDF2 algorithm using the SHA256 hashing function. The format should be as follows: + + `pbkdf2_sha256$$$` + + Note: Both the salt and the hash are expected to be base64-encoded. + + **pbkdf2_sha256_django:** This is the Django-specific variant of PBKDF2 and the digest should have the following format (as exported from Django): + + `pbkdf2_sha256$$$` + + Note: The salt is expected to be un-encoded, the hash is expected base64-encoded. + + **pbkdf2_sha1:** This is similar to pkbdf2_sha256_django, but with two differences: + 1. uses sha1 instead of sha256 + 2. accepts the hash as a hex-encoded string + + The format is the following: + + `pbkdf2_sha1$$$` + + + **scrypt_firebase:** The Firebase-specific variant of scrypt. + The value is expected to have 6 segments separated by the $ character and include the following information: + + _hash:_ The actual Base64 hash. This can be retrieved when exporting the user from Firebase. + _salt:_ The salt used to generate the above hash. Again, this is given when exporting the user. + _signer key:_ The base64 encoded signer key. + _salt separator:_ The base64 encoded salt separator. + _rounds:_ The number of rounds the algorithm needs to run. + _memory cost:_ The cost of the algorithm run + + The first 2 (hash and salt) are per user and can be retrieved when exporting the user from Firebase. + The other 4 values (signer key, salt separator, rounds and memory cost) are project-wide settings and can be retrieved from the project's password hash parameters. + + Once you have all these, you can combine it in the following format and send this as the digest in order for Clerk to accept it: + + `$$$$$` + + **argon2i:** Algorithms in the argon2 family generate digests that encode the following information: + + _version (v):_ The argon version, version 19 is assumed + _memory (m):_ The memory used by the algorithm (in kibibytes) + _iterations (t):_ The number of iterations to perform + _parallelism (p):_ The number of threads to use + + Parts are demarcated by the `$` character, with the first part identifying the algorithm variant. + The middle part is a comma-separated list of the encoding options (memory, iterations, parallelism). + The final part is the actual digest. + + `$argon2i$v=19$m=4096,t=3,p=1$4t6CL3P7YiHBtwESXawI8Hm20zJj4cs7/4/G3c187e0$m7RQFczcKr5bIR0IIxbpO2P0tyrLjf3eUW3M3QSwnLc` + + **argon2id:** See the previous algorithm for an explanation of the formatting. + + For the argon2id case, the value of the algorithm in the first part of the digest is `argon2id`: + + `$argon2id$v=19$m=64,t=4,p=8$Z2liZXJyaXNo$iGXEpMBTDYQ8G/71tF0qGjxRHEmR3gpGULcE93zUJVU` + + If you need support for any particular hashing algorithm, [please let us know](https://clerk.com/support). + enum: + - bcrypt + - md5 + - pbkdf2_sha256 + - pbkdf2_sha256_django + - pbkdf2_sha1 + - scrypt_firebase + - argon2i + - argon2id + skip_password_checks: + type: boolean + description: |- + When set to `true` all password checks are skipped. + It is recommended to use this method only when migrating plaintext passwords to Clerk. + Upon migration the user base should be prompted to pick stronger password. + skip_password_requirement: + type: boolean + description: |- + When set to `true`, `password` is not required anymore when creating the user and can be omitted. + This is useful when you are trying to create a user that doesn't have a password, in an instance that is using passwords. + Please note that you cannot use this flag if password is the only way for a user to sign into your instance. + totp_secret: + type: string + x-nullable: true + description: |- + In case TOTP is configured on the instance, you can provide the secret to enable it on the newly created user without the need to reset it. + Please note that currently the supported options are: + * Period: 30 seconds + * Code length: 6 digits + * Algorithm: SHA1 + backup_codes: + type: array + items: + type: string + x-nullable: true + description: |- + If Backup Codes are configured on the instance, you can provide them to enable it on the newly created user without the need to reset them. + You must provide the backup codes in plain format or the corresponding bcrypt digest. + public_metadata: + type: object + description: Metadata saved on the user, that is visible to both + your Frontend and Backend APIs + private_metadata: + type: object + description: Metadata saved on the user, that is only visible to + your Backend API + unsafe_metadata: + type: object + description: |- + Metadata saved on the user, that can be updated from both the Frontend and Backend APIs. + Note: Since this data can be modified from the frontend, it is not guaranteed to be safe. + created_at: + type: string + x-nullable: true + description: A custom date/time denoting _when_ the user signed + up to the application, specified in RFC3339 format (e.g. `2012-10-20T07:15:20.902Z`). + WebhookClerkResponse: + description: Clerk webhook object + properties: + object: + type: string + x-nullable: true + type: + description: Clerk Name + type: string + x-nullable: true + data: + type: object + type: object diff --git a/swagger/external/plex-vernonkeenan.yaml b/swagger/external/plex-vernonkeenan.yaml new file mode 100644 index 0000000..f5ce3ca --- /dev/null +++ b/swagger/external/plex-vernonkeenan.yaml @@ -0,0 +1,596 @@ +swagger: "2.0" +info: + version: 0.3.4 + title: "plex" + description: "Cross-Schema Retrieval Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/plex/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + slugQuery: + description: The slug of the item to retrieve + in: query + name: slug + required: false + type: string + CompanyIdQuery: + description: Record Id of an Company + in: query + name: companyId + required: false + type: string + limitQuery: + description: "How many objects to return at one time" + format: int64 + in: query + name: limit + required: false + type: integer + offsetQuery: + description: How many objects to skip? + format: int64 + in: query + name: offset + required: false + type: integer +responses: + AccessForbidden: + description: "Access forbidden, Company lacks access" + schema: + $ref: "#/definitions/Error" + InvalidDataError: + description: Invalid data was sent + schema: + $ref: "#/definitions/InvalidError" + NotFound: + description: Resource was not found + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + ServerError: + description: Server Internal Error + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + Unauthorized: + description: "Access unauthorized, invalid API-KEY was used" + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + schema: + $ref: "#/definitions/Error" + CompanyResponse: + description: The SalesforceDevops.net Company Object + schema: + $ref: "#/definitions/CompanyResponse" +paths: + /companies: + get: + description: Return all or a single company fully hydrated object + operationId: getCompanies + parameters: + - $ref: "#/parameters/CompanyIdQuery" + - $ref: "#/parameters/slugQuery" + responses: + "200": + $ref: "#/responses/CompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of companies + tags: + - Companies +definitions: + Address: + properties: + City: + description: City + type: string + x-nullable: true + Country: + description: Country full name + type: string + x-nullable: true + CountryCode: + description: Country Code + type: string + x-nullable: true + PostalCode: + description: Postal Code + type: string + x-nullable: true + State: + description: State full name + type: string + x-nullable: true + StateCode: + description: State Code + type: string + x-nullable: true + Street: + description: Street number and name + type: string + x-nullable: true + type: object + Company: + properties: + ID: + description: Company Id + type: string + AccountID: + description: Account Id + type: string + x-nullable: true + AccountNumber: + description: Company Number + type: string + x-nullable: true + AccountSource: + description: The marketing origin of this Company + type: string + x-nullable: true + Active: + type: boolean + x-nullable: true + AnnualRevenue: + x-nullable: true + description: Annual Revenue Estimate + format: double + type: number + CloudRevenueTotal: + x-nullable: true + type: number + CloudType: + x-nullable: true + description: The type of cloud company + type: string + CloudYear: + description: The year company started cloud revenue + type: string + x-nullable: true + CrunchbaseURL: + description: Company Crunchbase URL + type: string + x-nullable: true + Description: + description: Description of the Company + type: string + x-nullable: true + EarningsCall: + description: Earnings Call Date + type: string + x-nullable: true + Email: + description: Main Company Email + type: string + x-nullable: true + EquityFunding: + description: The amount of equity EquityFunding + type: number + x-nullable: true + Facebook: + description: Company Facebook URL + type: string + x-nullable: true + Fax: + description: Fax number + type: string + x-nullable: true + FoundedDate: + description: Date company founded + type: string + x-nullable: true + IPODate: + description: IPO Date + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + x-nullable: true + type: string + Industries: + x-nullable: true + description: Industries + type: string + Industry: + x-nullable: true + description: Industry + type: string + LinkedIn: + x-nullable: true + description: Company LinkedIn URL + type: string + ListingAddress: + x-nullable: true + $ref: "#/definitions/Address" + Location: + x-nullable: true + description: Headquarters Location Description + type: string + Logo: + x-nullable: true + description: Company Logo URL + type: string + MarketCapitalization: + x-nullable: true + description: Market Capitalization + type: number + Name: + x-nullable: true + description: Company Name + type: string + NumberInvestments: + x-nullable: true + description: Number of Investments + type: number + NumberOfEmployees: + x-nullable: true + description: Employee Count Estimate + format: int64 + type: number + Ownership: + x-nullable: true + description: Ownership + type: string + ParentID: + x-nullable: true + description: Parent Company + type: string + Phone: + x-nullable: true + description: Phone + type: string + Publish: + x-nullable: true + description: Publish this record? + type: boolean + SalesforceFirst: + x-nullable: true + description: A Salesforce-First company? + type: boolean + Slug: + x-nullable: true + description: Slug + type: string + TagLine: + x-nullable: true + description: Company tagline + type: string + TickerSymbol: + x-nullable: true + description: Ticker Symbol + type: string + Twitter: + x-nullable: true + description: Twitter URL + type: string + Type: + x-nullable: true + description: Type + type: string + Website: + x-nullable: true + description: Website + type: string + YearStarted: + x-nullable: true + description: Year Started + type: string + CompanyProducts: + description: Company Products + x-nullable: true + type: array + items: + $ref: "#/definitions/CompanyProduct" + FinancialStatements: + description: Financial Statements + x-nullable: true + type: array + items: + $ref: "#/definitions/FinancialStatement" + IndustryCompanies: + description: Similar Companies + x-nullable: true + type: array + items: + $ref: "#/definitions/IndustryCompany" + type: object + FinancialStatement: + type: object + description: A financial statement for a company + properties: + ID: + description: Record Id + type: string + AccessNumber: + description: EDGAR Access Number + type: string + AccountID: + description: Account ID + type: string + CloudRevenue: + description: Cloud Revenue + type: number + CreatedByID: + description: Created By User ID + type: string + CreatedDate: + description: Created Date + type: string + Description: + description: Description + type: string + EdgarURL: + description: EDGAR URL + type: string + FilingType: + description: Filing Type + type: string + GrossProfit: + description: Gross Profit + type: number + LastModifiedByID: + description: Last Modified By User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + NetIncome: + description: Net Income + type: number + PeriodEndDate: + description: Period End Date + type: string + TotalRevenue: + description: Total Revenue + type: number + Year: + description: Year + type: string + CompanyProduct: + description: A software product or service vended by a Company + properties: + ID: + description: Record Id + type: string + AccountID: + description: ID of the Company that owns this Product + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of product + type: string + x-nullable: true + FullDescription: + description: Full Description of product + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + Industries: + x-nullable: true + description: Industries + type: array + items: + $ref: "#/definitions/Industry" + LastModifiedByID: + x-nullable: true + description: Last Modified By User ID + type: string + LastModifiedDate: + x-nullable: true + description: Last Modified Date + type: string + Logo: + x-nullable: true + description: Logo + type: string + Name: + x-nullable: true + description: Product Name + type: string + ProductVideoID: + x-nullable: true + description: Product Video ID + type: string + Published: + x-nullable: true + description: Published + type: boolean + SalesforceSpecific: + x-nullable: true + description: Salesforce Specific + type: boolean + Slug: + x-nullable: true + description: Slug + type: string + TagLine: + x-nullable: true + description: TagLine + type: string + URL: + x-nullable: true + description: Website + type: string + type: object + Industry: + description: An industry that is being researched + properties: + ID: + description: Record Id + type: string + Companies: + x-nullable: true + description: The AccountIDs of the Companies in this Industry + type: array + items: + type: string + CompanyProducts: + x-nullable: true + description: The list of Products in this industry + type: array + items: + $ref: "#/definitions/CompanyProduct" + CreatedByID: + x-nullable: true + description: Created By User ID + type: string + CreatedDate: + x-nullable: true + description: Created Date + type: string + Description: + x-nullable: true + description: Industry Description + type: string + ImageAltText: + x-nullable: true + description: Image Alt Text + type: string + ImageURL: + x-nullable: true + description: Image URL + type: string + LastModifiedByID: + x-nullable: true + description: Last Modified By User ID + type: string + LastModifiedDate: + x-nullable: true + description: Last Modified Date + type: string + Level: + x-nullable: true + description: The hierarchical level of this Industry + type: string + Logo: + x-nullable: true + description: Logo + type: string + Name: + x-nullable: true + description: Industry Name + type: string + ParentIndustryID: + x-nullable: true + description: The ID of the Parent Industry + type: string + Path: + x-nullable: true + description: The full path of this industry, including Parent + type: string + Slug: + x-nullable: true + description: The CMS Slug for this Industry + type: string + TagLine: + x-nullable: true + description: TagLine + type: string + type: object + IndustryCompany: + description: Junction object between Industry and Company + properties: + ID: + description: Record Id + type: string + CompanyID: + type: string + CompanyName: + type: string + CompanySlug: + type: string + CompanyWebsite: + type: string + IndustryID: + type: string + IndustryName: + type: string + IndustrySlug: + type: string + IndustryTagLine: + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + LastModifiedDate: + description: Last Modified Date + type: string + Path: + type: string + type: object + CompanyRequest: + description: An array of Company objects with Contacts + properties: + Data: + items: + $ref: "#/definitions/Company" + type: array + type: object + CompanyResponse: + description: An array of Company objects with Contacts + properties: + Data: + items: + $ref: "#/definitions/Company" + type: array + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + type: object + Error: + $ref: "../../lib/swagger/defs/error.yaml#/Error" + InvalidError: + allOf: + - $ref: "#/definitions/Error" + - properties: + details: + items: + type: string + type: array + type: object diff --git a/swagger/external/research-vernonkeenan.yaml b/swagger/external/research-vernonkeenan.yaml new file mode 100644 index 0000000..0293721 --- /dev/null +++ b/swagger/external/research-vernonkeenan.yaml @@ -0,0 +1,2019 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "research" + description: "Customer Information Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/research/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + accountIdQuery: + description: Record Id of an Account + in: query + name: accountId + required: false + type: string + activeQuery: + description: Only retrieve active records? + in: query + name: active + required: false + type: boolean + companyProductIdQuery: + description: CompanyProduct record ID + in: query + name: companyProductId + required: false + type: string + companyServiceIdQuery: + description: CompanyService record ID + in: query + name: companyServiceId + required: false + type: string + companyProductRequest: + description: An array of new CompanyProduct records + in: body + name: companyProductRequest + required: true + schema: + $ref: "#/definitions/CompanyProductRequest" + companyServiceRequest: + description: An array of new CompanyService records + in: body + name: companyServiceRequest + required: true + schema: + $ref: "#/definitions/CompanyServiceRequest" + contactIdQuery: + description: Contact record ID + in: query + name: contactId + required: false + type: string + emailQuery: + description: Email address used for identity lookup + in: query + name: email + required: false + type: string + factorIdQuery: + description: Factor record ID + in: query + name: factorId + required: false + type: string + financialStatementIdQuery: + description: Financial Statement record ID + in: query + name: financialStatementId + required: false + type: string + factorRequest: + description: An array of new Factor records + in: body + name: factorRequest + required: true + schema: + $ref: "#/definitions/FactorRequest" + financialStatementRequest: + description: An array of new FinancialStatement records + in: body + name: financialStatementRequest + required: true + schema: + $ref: "#/definitions/FinancialStatementRequest" + industryCompanyIdQuery: + description: IndustryCompany record ID + in: query + name: industryCompanyId + required: false + type: string + industryCompanyRequest: + description: An array of new IndustryCompany records + in: body + name: industryCompanyRequest + required: true + schema: + $ref: "#/definitions/IndustryCompanyRequest" + industryIdQuery: + description: Industry record ID + in: query + name: industryId + required: false + type: string + productCategoryQuery: + description: Is this industry a product category? + in: query + name: productCategory + required: false + type: boolean + serviceCategoryQuery: + description: Is this industry a service category? + in: query + name: serviceCategory + required: false + type: boolean + industryProductIdQuery: + description: IndustryProduct record ID + in: query + name: industryProductId + required: false + type: string + industryProductRequest: + description: An array of new IndustryProduct records + in: body + name: industryProductRequest + required: true + schema: + $ref: "#/definitions/IndustryProductRequest" + industryServiceIdQuery: + description: IndustryService record ID + in: query + name: industryServiceId + required: false + type: string + industryServiceRequest: + description: An array of new IndustryService records + in: body + name: industryServiceRequest + required: true + schema: + $ref: "#/definitions/IndustryServiceRequest" + industryRequest: + description: An array of new Industry records + in: body + name: industryRequest + required: true + schema: + $ref: "#/definitions/IndustryRequest" + leadIdQuery: + description: Lead record ID + in: query + name: leadId + required: false + type: string + limitQuery: + description: How many objects to return at one time + format: int64 + in: query + name: limit + required: false + type: integer + nameQuery: + description: The Name of this Object + in: query + name: name + required: false + type: string + slugQuery: + description: The Slug of this Object + in: query + name: slug + required: false + type: string + observationIdQuery: + description: Observation record ID + in: query + name: observationId + required: false + type: string + observationRequest: + description: An array of new Observation records + in: body + name: observationRequest + required: true + schema: + $ref: "#/definitions/ObservationRequest" + offsetQuery: + description: How many objects to skip? + format: int64 + in: query + name: offset + required: false + type: integer + topicIdQuery: + description: Topic record ID + in: query + name: topicId + required: false + type: string + topicRequest: + description: An array of new Topic records + in: body + name: topicRequest + required: true + schema: + $ref: "#/definitions/TopicRequest" + typeQuery: + description: The Type of this Object + in: query + name: type + required: false + type: string + +responses: + AccessForbidden: + description: Access forbidden, account lacks access + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + CompanyProductResponse: + description: Response with CompanyProduct objects + schema: + $ref: "#/definitions/CompanyProductResponse" + CompanyServiceResponse: + description: Response with CompanyService objects + schema: + $ref: "#/definitions/CompanyServiceResponse" + Conflict: + description: Conflict + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + DeleteResponse: + description: Response with Message Objects with Delete Status + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/DeleteResponse" + FactorResponse: + description: Response with Factor objects + schema: + $ref: "#/definitions/FactorResponse" + FinancialStatementResponse: + description: Response with FinancialStatement objects + schema: + $ref: "#/definitions/FinancialStatementResponse" + IndustryCompanyResponse: + description: Response with IndustryCompany objects + schema: + $ref: "#/definitions/IndustryCompanyResponse" + IndustryProductResponse: + description: Response with IndustryProduct objects + schema: + $ref: "#/definitions/IndustryProductResponse" + IndustryServiceResponse: + description: Response with IndustryService objects + schema: + $ref: "#/definitions/IndustryServiceResponse" + IndustryResponse: + description: Response with Industry objects + schema: + $ref: "#/definitions/IndustryResponse" + InvalidDataError: + description: Invalid data was sent + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/InvalidError" + NotFound: + description: Resource was not found + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + ObservationResponse: + description: Response with Observation objects + schema: + $ref: "#/definitions/ObservationResponse" + ServerError: + description: Server Internal Error + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + TopicResponse: + description: Response with Topic objects + schema: + $ref: "#/definitions/TopicResponse" + Unauthorized: + description: Access unauthorized, invalid API-KEY was used + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: Unprocessable Entity, likely a bad parameter + headers: + Access-Control-Allow-Origin: + type: string + schema: + $ref: "#/definitions/Error" + CompanyCategoryResponse: + description: The SalesforceDevops.net CompanyCategory Object + schema: + $ref: "#/definitions/CompanyCategoryResponse" + +paths: + /companycategories: + get: + description: Return all or a single company category fully hydrated object + operationId: getCompanyCategories + responses: + "200": + $ref: "#/responses/CompanyCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of company categories + tags: + - CompanyCategories + /companyservices: + delete: + description: Delete CompanyService record + operationId: deleteCompanyService + parameters: + - $ref: "#/parameters/companyServiceIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete a CompanyService + tags: + - CompanyServices + get: + description: Return a list of all available CompanyServices + operationId: getCompanyServices + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/slugQuery" + - $ref: "#/parameters/companyServiceIdQuery" + responses: + "200": + $ref: "#/responses/CompanyServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of company services + tags: + - CompanyServices + post: + description: Create a new CompanyService record + operationId: postCompanyServices + parameters: + - $ref: "#/parameters/companyServiceRequest" + responses: + "200": + $ref: "#/responses/CompanyServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "409": + $ref: "#/responses/Conflict" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create a new CompanyService + tags: + - CompanyServices + /companyproducts: + delete: + description: Delete CompanyProduct record + operationId: deleteCompanyProduct + parameters: + - $ref: "#/parameters/companyProductIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete a CompanyProduct + tags: + - CompanyProducts + get: + description: Return a list of all available CompanyProducts + operationId: getCompanyProducts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/slugQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/companyProductIdQuery" + responses: + "200": + $ref: "#/responses/CompanyProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of companyproducts + tags: + - CompanyProducts + post: + description: CompanyProduct record to be added + operationId: postCompanyProducts + parameters: + - $ref: "#/parameters/companyProductRequest" + responses: + "200": + $ref: "#/responses/CompanyProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new companyproduct to SalesforceDevops.net + tags: + - CompanyProducts + put: + description: Update companyproduct records + operationId: putCompanyProduct + parameters: + - $ref: "#/parameters/companyProductRequest" + responses: + "200": + $ref: "#/responses/CompanyProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single companyproduct + tags: + - CompanyProducts + /factors: + delete: + description: Delete Factor record + operationId: deleteFactor + parameters: + - $ref: "#/parameters/factorIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Factor + tags: + - Factors + get: + description: Return a list of all available Factors + operationId: getFactors + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/factorIdQuery" + responses: + "200": + $ref: "#/responses/FactorResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of factors + tags: + - Factors + post: + description: Factor records to be added + operationId: postFactors + parameters: + - $ref: "#/parameters/factorRequest" + responses: + "200": + $ref: "#/responses/FactorResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new factor to SalesforceDevops.net + tags: + - Factors + put: + description: Update factor records + operationId: putFactor + parameters: + - $ref: "#/parameters/factorRequest" + responses: + "200": + $ref: "#/responses/FactorResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update factor records + tags: + - Factors + /financialstatements: + delete: + description: Delete FinancialStatement record + operationId: deleteFinancialStatement + parameters: + - $ref: "#/parameters/financialStatementIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An FinancialStatement + tags: + - FinancialStatements + get: + description: Return a list of all available FinancialStatements + operationId: getFinancialStatements + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/financialStatementIdQuery" + responses: + "200": + $ref: "#/responses/FinancialStatementResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of financialStatements + tags: + - FinancialStatements + post: + description: FinancialStatement records to be added + operationId: postFinancialStatements + parameters: + - $ref: "#/parameters/financialStatementRequest" + responses: + "200": + $ref: "#/responses/FinancialStatementResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new financialStatement to SalesforceDevops.net + tags: + - FinancialStatements + put: + description: Update financialStatement records + operationId: putFinancialStatement + parameters: + - $ref: "#/parameters/financialStatementRequest" + responses: + "200": + $ref: "#/responses/FinancialStatementResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update financialStatement records + tags: + - FinancialStatements + /industries: + get: + description: Retrieve Industry records from the microservice + operationId: getIndustries + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/slugQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/industryIdQuery" + - $ref: "#/parameters/productCategoryQuery" + - $ref: "#/parameters/serviceCategoryQuery" + responses: + "200": + $ref: "#/responses/IndustryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Industry records + tags: + - Industry + post: + description: Add new industries + operationId: postIndustries + parameters: + - $ref: "#/parameters/industryRequest" + responses: + "200": + $ref: "#/responses/IndustryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add new companies + tags: + - Industry + /industrycompanies: + delete: + description: Delete IndustryCompany record + operationId: deleteIndustryCompany + parameters: + - $ref: "#/parameters/industryCompanyIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An IndustryCompany + tags: + - IndustryCompanies + get: + description: Return a list of all available IndustryCompanies + operationId: getIndustryCompanies + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryCompanyIdQuery" + - $ref: "#/parameters/emailQuery" + responses: + "200": + $ref: "#/responses/IndustryCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industrycompanies + tags: + - IndustryCompanies + post: + description: IndustryCompany record to be added + operationId: postIndustryCompanies + parameters: + - $ref: "#/parameters/industryCompanyRequest" + responses: + "200": + $ref: "#/responses/IndustryCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new industryCompany to SalesforceDevops.net + tags: + - IndustryCompanies + /industryservices: + delete: + description: Delete IndustryService record + operationId: deleteIndustryService + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/industryServiceIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An IndustryService + tags: + - IndustryServices + get: + description: Return a list of all available IndustryServices + operationId: getIndustryServices + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/industryServiceIdQuery" + responses: + "200": + $ref: "#/responses/IndustryServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industryservices + tags: + - IndustryServices + post: + description: IndustryService record to be added + operationId: postIndustryServices + parameters: + - $ref: "#/parameters/industryServiceRequest" + responses: + "200": + $ref: "#/responses/IndustryServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new industryService to SalesforceDevops.net + tags: + - IndustryServices + /industryproducts: + delete: + description: Delete IndustryProduct record + operationId: deleteIndustryProduct + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/industryProductIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An IndustryProduct + tags: + - IndustryProducts + get: + description: Return a list of all available IndustryProducts + operationId: getIndustryProducts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryProductIdQuery" + responses: + "200": + $ref: "#/responses/IndustryProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industryProducts + tags: + - IndustryProducts + post: + description: IndustryProduct record to be added + operationId: postIndustryProducts + parameters: + - $ref: "#/parameters/industryProductRequest" + responses: + "200": + $ref: "#/responses/IndustryProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new industryProduct to SalesforceDevops.net + tags: + - IndustryProducts + /observations: + delete: + description: Delete Observation record + operationId: deleteObservation + parameters: + - $ref: "#/parameters/observationIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Observation + tags: + - Observations + get: + description: Return a list of all available Observations + operationId: getObservations + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/observationIdQuery" + responses: + "200": + $ref: "#/responses/ObservationResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of observations + tags: + - Observations + post: + description: Observation record to be added + operationId: postObservations + parameters: + - $ref: "#/parameters/observationRequest" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ObservationResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new observation to SalesforceDevops.net + tags: + - Observations + put: + description: Update a single observation specified by observationId + operationId: putObservation + parameters: + - $ref: "#/parameters/observationRequest" + responses: + "200": + $ref: "#/responses/ObservationResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single observation + tags: + - Observations + /topics: + get: + description: Retrieve Topic records from the microservice + operationId: getTopics + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/topicIdQuery" + responses: + "200": + $ref: "#/responses/TopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Topic records + tags: + - Topics + post: + description: Add new topics + operationId: postTopics + parameters: + - $ref: "#/parameters/topicRequest" + responses: + "200": + $ref: "#/responses/TopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add new topics + tags: + - Topics + +definitions: + Address: + properties: + City: + description: City + type: string + x-nullable: true + Country: + description: Country full name + type: string + x-nullable: true + CountryCode: + description: Country Code + type: string + x-nullable: true + PostalCode: + description: Postal Code + type: string + x-nullable: true + State: + description: State full name + type: string + x-nullable: true + StateCode: + description: State Code + type: string + x-nullable: true + Street: + description: Street number and name + type: string + x-nullable: true + type: object + CompanyCategory: + properties: + CloudType: + description: The Type of Cloud Company + type: string + Count: + description: The number of companies + type: number + type: object + CompanyCategoryResponse: + description: An array of CompanyCategory objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/CompanyCategory" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CompanyProduct: + description: A software product or service vended by a Company + properties: + AccountID: + description: ID of the Company that owns this Product + type: string + x-nullable: true + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of product + type: string + x-nullable: true + FullDescription: + description: Full Description of product + type: string + x-nullable: true + ID: + description: Record Id + type: string + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + Industries: + description: Industries + items: + $ref: "#/definitions/Industry" + type: array + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Product Name + type: string + x-nullable: true + ProductVideoID: + description: Product Video ID + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: TagLine + type: string + x-nullable: true + URL: + description: Website + type: string + x-nullable: true + type: object + CompanyProductRequest: + description: An array of CompanyProduct objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/CompanyProduct" + type: array + type: object + CompanyProductResponse: + description: An array of CompanyProduct objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/CompanyProduct" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CompanyService: + description: A service performed by a Company + properties: + ID: + description: Record Id + type: string + AccountID: + description: ID of the Company that owns this Service + type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of service + type: string + x-nullable: true + FullDescription: + description: Full Description of service + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + Industries: + description: Industries + items: + $ref: "#/definitions/Industry" + type: array + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Service Name + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + ServiceVideoID: + description: Service Video ID + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Tag Line + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + type: object + CompanyServiceRequest: + description: An array of CompanyService objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/CompanyService" + type: array + type: object + CompanyServiceResponse: + description: An array of CompanyService objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/CompanyService" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + DeleteResponse: + properties: + Data: + items: + $ref: "#/definitions/Message" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Error: + $ref: ../../lib/swagger/defs/error.yaml#/Error + Factor: + description: A Factor of analysis within a research topic + properties: + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Factor Name + type: string + x-nullable: true + Observations: + description: The list of Observations used to analyze this industry + items: + $ref: "#/definitions/Observation" + type: array + x-nullable: true + Slug: + description: The slug of the corresponding page on the CMS + type: string + x-nullable: true + TopicID: + description: The ID of the Topic that owns this Factor + type: string + x-nullable: true + type: object + FactorRequest: + description: An array of Factor objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Factor" + type: array + type: object + FactorResponse: + description: An array of Factor objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Factor" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + FinancialStatement: + description: A financial statement for a company + properties: + AccessNumber: + description: EDGAR Access Number + type: string + x-nullable: true + AccountID: + description: Account ID + type: string + x-nullable: true + CloudRevenue: + description: Cloud Revenue + type: number + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + EdgarURL: + description: EDGAR URL + type: string + x-nullable: true + FilingType: + description: Filing Type + type: string + x-nullable: true + GrossProfit: + description: Gross Profit + type: number + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + NetIncome: + description: Net Income + type: number + x-nullable: true + PeriodEndDate: + description: Period End Date + type: string + x-nullable: true + TotalRevenue: + description: Total Revenue + type: number + x-nullable: true + Year: + description: Year + type: string + x-nullable: true + type: object + FinancialStatementRequest: + description: An array of FinancialStatement objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/FinancialStatement" + type: array + type: object + FinancialStatementResponse: + description: An array of FinancialStatement objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/FinancialStatement" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Industry: + description: An industry that is being researched + properties: + ID: + description: Record Id + type: string + CompanyProducts: + description: The list of Products in this industry + items: + $ref: "#/definitions/CompanyProduct" + type: array + x-nullable: true + CompanyServices: + description: The list of Services in this industry + items: + $ref: "#/definitions/CompanyService" + type: array + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Industry Description + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Level: + description: The hierarchical level of this Industry + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Industry Name + type: string + x-nullable: true + ParentIndustryID: + description: The ID of the Parent Industry + type: string + x-nullable: true + Path: + description: The full path of this industry, including Parent + type: string + x-nullable: true + ProductCategory: + description: Is this industry a product category? + type: boolean + x-nullable: true + ServiceCategory: + description: Is this industry a service category? + type: boolean + x-nullable: true + Slug: + description: The CMS Slug for this Industry + type: string + x-nullable: true + TagLine: + description: TagLine + type: string + x-nullable: true + type: object + IndustryCompany: + description: Junction object between Industry and Company + properties: + AccountID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + ID: + description: Record Id + type: string + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Path: + type: string + x-nullable: true + type: object + IndustryCompanyRequest: + description: An array of IndustryCompany objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryCompany" + type: array + type: object + IndustryCompanyResponse: + description: An array of IndustryCompany objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryCompany" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryProduct: + description: Junction object between Industry and CompanyProduct + properties: + CompanyProductID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + HTML: + type: string + x-nullable: true + ID: + description: Record Id + type: string + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object + IndustryProductRequest: + description: An array of IndustryProduct objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryProduct" + type: array + type: object + IndustryProductResponse: + description: An array of IndustryProduct objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryProduct" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryService: + description: Junction Object bewtwen Industry and CompanyService + properties: + ID: + description: Record Id + type: string + CompanyService: + $ref: "#/definitions/CompanyService" + CompanyServiceID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Industry: + $ref: "#/definitions/Industry" + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object + IndustryServiceRequest: + description: An array of IndustryService objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryService" + type: array + type: object + IndustryServiceResponse: + description: An array of IndustryService objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryService" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryRequest: + description: An array of Industry objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Industry" + type: array + type: object + IndustryResponse: + description: An array of Industry objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Industry" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + InvalidError: + allOf: + - $ref: "#/definitions/Error" + - properties: + details: + items: + type: string + type: array + type: object + Message: + properties: + message: + type: string + ref: + type: string + status: + format: int64 + type: number + type: object + Observation: + description: A data point collected while analyzing a Factor + properties: + AccountID: + description: The ID of the Company being analyzed + type: string + x-nullable: true + CompanyProductID: + description: The ID of the Product being analyzed + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Notes concerning data collection + type: string + x-nullable: true + FactorID: + description: The ID of the Factor that owns this Observation + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + SubjectType: + description: Is the subject a Company or a Product? + type: string + x-nullable: true + Value: + description: The data point collected + type: string + x-nullable: true + type: object + ObservationRequest: + description: An array of Observation objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Observation" + type: array + type: object + ObservationResponse: + description: An array of Observation objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Observation" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Pagination: + properties: + limit: + format: int64 + type: number + pagesize: + format: int64 + type: number + poffset: + format: int64 + type: integer + setsize: + format: int64 + type: number + type: object + RequestMeta: + properties: + ExternalAccount: + description: Account Number of the Reseller or OEM + type: string + required: + - ExternalAccount + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + Pagination: + $ref: "#/definitions/Pagination" + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object + Topic: + description: A research topic that collects data + properties: + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + Factors: + description: The list of Factors used to analyze this industry + items: + $ref: "#/definitions/Factor" + type: array + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Topic Name + type: string + x-nullable: true + ParentTopicID: + description: The ID of the Parent Topic + type: string + x-nullable: true + Slug: + description: The CMS Slug for this Topic + type: string + x-nullable: true + type: object + TopicRequest: + description: An array of Topic objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Topic" + type: array + type: object + TopicResponse: + description: An array of Topic objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Topic" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object diff --git a/swagger/external/sf-gate-vernonkeenan.yaml b/swagger/external/sf-gate-vernonkeenan.yaml new file mode 100644 index 0000000..4349b29 --- /dev/null +++ b/swagger/external/sf-gate-vernonkeenan.yaml @@ -0,0 +1,5552 @@ +swagger: "2.0" +info: + version: 0.2.0 + title: "sf-gate" + description: "Salesforce Gateway Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@salesforcedevops.net" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +schemes: + - "https" +basePath: "/vk/sf-gate/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + accountIdQuery: + description: Record Id of an Account + in: query + name: accountId + required: false + type: string + idQuery: + description: Unique Record ID + in: query + name: id + required: false + type: string + industryCompanyIdQuery: + description: Record Id of an IndustryCompany + in: query + name: industryCompanyId + required: false + type: string + accountRequest: + description: A request with an array of Account Objects + in: body + name: accountRequest + required: true + schema: + $ref: "#/definitions/AccountRequest" + CourseRequest: + description: An array of new Course records + in: body + name: courseRequest + required: true + schema: + $ref: "#/definitions/CourseRequest" + CourseSectionRequest: + description: An array of new CourseSection records + in: body + name: coursesectionRequest + required: true + schema: + $ref: "#/definitions/CourseSectionRequest" + industryCompanyRequest: + description: A request with an array of IndustryCompany Objects + in: body + name: industryCompanyRequest + required: true + schema: + $ref: "#/definitions/IndustryCompanyRequest" + topicRequest: + description: A request with an array of Topic Objects + in: body + name: topicRequest + required: true + schema: + $ref: "#/definitions/TopicRequest" + activeQuery: + description: Only retrieve active records? + in: query + name: active + required: false + type: boolean + apiKeyQuery: + description: Id of the User to be retrieved + in: query + name: apikey + required: false + type: string + assetIdQuery: + description: Record Id of an Asset + in: query + name: assetId + required: false + type: string + assetRequest: + description: An array of new Asset records + in: body + name: assetRequest + required: true + schema: + $ref: "#/definitions/AssetRequest" + companyServiceIdQuery: + description: CompanyService record ID + in: query + name: companyServiceId + required: false + type: string + companyServiceRequest: + description: An array of new CompanyService records + in: body + name: companyServiceRequest + required: true + schema: + $ref: "#/definitions/CompanyServiceRequest" + industryServiceIdQuery: + description: IndustryService record ID + in: query + name: industryServiceId + required: false + type: string + industryServiceRequest: + description: An array of new IndustryService records + in: body + name: industryServiceRequest + required: true + schema: + $ref: "#/definitions/IndustryServiceRequest" + clusterIdQuery: + description: Record Id of a Cluster + in: query + name: clusterId + required: false + type: string + CourseLessonRequest: + description: An array of new CourseLesson records + in: body + name: courselessonRequest + required: true + schema: + $ref: "#/definitions/CourseLessonRequest" + clusterRequest: + description: An array of Cluster records + in: body + name: ClusterRequest + required: true + schema: + $ref: "#/definitions/ClusterRequest" + companyProductIdQuery: + description: CompanyProduct record ID + in: query + name: companyProductId + required: false + type: string + companyProductRequest: + description: An array of new Contact records + in: body + name: contactRequest + required: true + schema: + $ref: "#/definitions/CompanyProductRequest" + contactIdQuery: + description: Record Id of a Contact + in: query + name: contactId + required: false + type: string + contactRequest: + description: An array of new Contact records + in: body + name: contactRequest + required: true + schema: + $ref: "#/definitions/ContactRequest" + documentRequest: + description: An array of new Document records + in: body + name: documentRequest + required: true + schema: + $ref: "#/definitions/DocumentRequest" + contractIdQuery: + description: Contact record ID + in: query + name: contractId + required: false + type: string + contractRequest: + description: An array of new Contract records + in: body + name: contractsRequest + required: true + schema: + $ref: "#/definitions/ContractRequest" + databaseIdQuery: + description: Record Id of a Database + in: query + name: databaseId + required: false + type: string + databaseRequest: + description: An array of Database records + in: body + name: DatabaseRequest + required: true + schema: + $ref: "#/definitions/DatabaseRequest" + emailQuery: + description: Email address used for identity lookup + in: query + name: email + required: false + type: string + EventRequest: + description: An array of new Event records + in: body + name: eventRequest + required: true + schema: + $ref: "#/definitions/EventRequest" + EventCategoryRequest: + description: An array of new Event records + in: body + name: eventCategoryRequest + required: true + schema: + $ref: "#/definitions/EventCategoryRequest" + factorIdQuery: + description: Record Id of a Factor + in: query + name: factorId + required: false + type: string + factorRequest: + description: A request with an array of Factor Objects + in: body + name: factorRequest + required: true + schema: + $ref: "#/definitions/FactorRequest" + financialStatementIdQuery: + description: Record Id of a FinancialStatement + in: query + name: financialStatementId + required: false + type: string + financialStatementRequest: + description: A request with an array of FinancialStatement Objects + in: body + name: financialStatementRequest + required: true + schema: + $ref: "#/definitions/FinancialStatement" + industryIdQuery: + description: Industry record ID + in: query + name: industryId + required: false + type: string + industryProductIdQuery: + description: IndustryProduct record ID + in: query + name: industryProductId + required: false + type: string + industryProductRequest: + description: An array of new Industry records + in: body + name: industryRequest + required: true + schema: + $ref: "#/definitions/IndustryProductRequest" + industryRequest: + description: An array of new Industry records + in: body + name: industryRequest + required: true + schema: + $ref: "#/definitions/IndustryRequest" + limitQuery: + description: How many objects to return at one time + format: int64 + in: query + name: limit + required: false + type: integer + nameQuery: + description: The Name of this Object + in: query + name: name + required: false + type: string + newUserRequest: + description: A single new user record + in: body + name: UserRequest + required: true + schema: + $ref: "#/definitions/UserRequest" + observationIdQuery: + description: Record Id of an Observation + in: query + name: observationId + required: false + type: string + observationRequest: + description: A request with an array of Observation Objects + in: body + name: accountRequest + required: true + schema: + $ref: "#/definitions/ObservationRequest" + offsetQuery: + description: How many objects to skip? + format: int64 + in: query + name: offset + required: false + type: integer + roleIdQuery: + description: Id of the Role to be retrieved + in: query + name: roleId + required: false + type: string + PromptRequest: + description: An array of new Prompt records + in: body + name: promptRequest + required: true + schema: + $ref: "#/definitions/PromptRequest" + PromptCategoryRequest: + description: An array of PromptCategory objects + name: promptCategoryRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptCategoryRequest" + PromptAnswerRequest: + description: An array of PromptAnswer objects + name: promptAnswerRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptAnswerRequest" + PromptTagRequest: + description: An array of PromptTag objects + name: promptTagRequest + required: true + in: body + schema: + $ref: "#/definitions/PromptTagRequest" + ResearchProjectCompanyRequest: + description: An array of new ResearchProjectCompany records + in: body + name: researchProjectCompanyRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectCompanyRequest" + ResearchProjectDocumentRequest: + description: An array of new ResearchProjectDocument records + in: body + name: researchProjectDocumentRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectDocumentRequest" + researchProjectProductRequest: + description: An array of new ResearchProjectProduct records + in: body + name: researchProjectProductRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectProductRequest" + ResearchProjectServiceRequest: + description: An array of new ResearchProjectService records + in: body + name: researchProjectServiceRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectServiceRequest" + ResearchProjectRequest: + description: An array of new ResearchProject records + in: body + name: researchProjectRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectRequest" + ResearchProjectTopicRequest: + description: An array of new ResearchProjectTopic records + in: body + name: researchProjectTopicRequest + required: true + schema: + $ref: "#/definitions/ResearchProjectTopicRequest" + templateIdQuery: + description: Record Id of a Template + in: query + name: templateId + required: false + type: string + tenantIdQuery: + description: Record Id of a Tenant + in: query + name: tenantId + required: false + type: string + tenantRequest: + description: An array of Tenant records + in: body + name: CTenantRequest + required: true + schema: + $ref: "#/definitions/TenantRequest" + toipicRequest: + description: A request with an array of Topic Objects + in: body + name: topicRequest + required: true + schema: + $ref: "#/definitions/TopicRequest" + topicIdQuery: + description: Record Id of a Topic + in: query + name: topicId + required: false + type: string + userIdQuery: + description: Id of the User to be retrieved + in: query + name: userId + required: false + type: string +responses: + AccessForbidden: + description: Access forbidden, account lacks access + schema: + $ref: "#/definitions/Error" + AccountResponse: + description: Response with Account objects + schema: + $ref: "#/definitions/AccountResponse" + EventResponse: + description: Event Response Object + schema: + $ref: "#/definitions/EventResponse" + EventCategoryResponse: + description: Event Response Object + schema: + $ref: "#/definitions/EventCategoryResponse" + IndustryCompanyResponse: + description: Response with IndustryCompany objects + schema: + $ref: "#/definitions/IndustryCompanyResponse" + AssetResponse: + description: Response with Asset objects + schema: + $ref: "#/definitions/AssetResponse" + ClusterResponse: + description: Response with Cluster objects + schema: + $ref: "#/definitions/ClusterResponse" + CompanyProductResponse: + description: Response with an array of CompanyProduct objects + schema: + $ref: "#/definitions/CompanyProductResponse" + CompanyServiceResponse: + description: Response with CompanyService objects + schema: + $ref: "#/definitions/CompanyServiceResponse" + ContactResponse: + description: Response with Contact objects + schema: + $ref: "#/definitions/ContactResponse" + ContractResponse: + description: Response with an array of Contract objects + schema: + $ref: "#/definitions/ContractResponse" + DatabaseResponse: + description: Response with Database objects + schema: + $ref: "#/definitions/DatabaseResponse" + DocumentResponse: + description: Response with Document objects + schema: + $ref: "#/definitions/DocumentResponse" + DeleteResponse: + description: Response with Message Objects with Delete Status + schema: + $ref: "#/definitions/DeleteResponse" + CourseResponse: + description: Course Response Object + schema: + $ref: "#/definitions/CourseResponse" + FactorResponse: + description: Response with Factor objects + schema: + $ref: "#/definitions/FactorResponse" + FavoriteResponse: + description: Favorite Response Object + schema: + $ref: "#/definitions/FavoriteResponse" + FinancialStatementResponse: + description: Response with FinancialStatement objects + schema: + $ref: "#/definitions/FinancialStatementResponse" + IndustryProductResponse: + description: Response with Industry objects + schema: + $ref: "#/definitions/IndustryProductResponse" + CourseSectionResponse: + description: CourseSection Response Object + schema: + $ref: "#/definitions/CourseSectionResponse" + CourseLessonResponse: + description: CourseLesson Response Object + schema: + $ref: "#/definitions/CourseLessonResponse" + IndustryResponse: + description: Response with Industry objects + schema: + $ref: "#/definitions/IndustryResponse" + IndustryServiceResponse: + description: Response with IndustryService objects + schema: + $ref: "#/definitions/IndustryServiceResponse" + InvalidDataError: + description: Invalid data was sent + schema: + $ref: "#/definitions/InvalidError" + NotFound: + description: Resource was not found + schema: + $ref: "#/definitions/Error" + PromptResponse: + description: Response with Prompt objects + schema: + $ref: "#/definitions/PromptResponse" + PromptCategoryResponse: + description: Response with PromptCategory objects + schema: + $ref: "#/definitions/PromptCategoryResponse" + PromptAnswerResponse: + description: Response with PromptAnswer objects + schema: + $ref: "#/definitions/PromptAnswerResponse" + PromptTagResponse: + description: Response with PromptTag objects + schema: + $ref: "#/definitions/PromptTagResponse" + ObservationResponse: + description: Response with Observation objects + schema: + $ref: "#/definitions/ObservationResponse" + ResearchProjectCompanyResponse: + description: ResearchProjectCompany Response Object + schema: + $ref: "#/definitions/ResearchProjectCompanyResponse" + ResearchProjectDocumentResponse: + description: ResearchProjectDocument Response Object + schema: + $ref: "#/definitions/ResearchProjectDocumentResponse" + ResearchProjectProductResponse: + description: ResearchProjectProduct Response Object + schema: + $ref: "#/definitions/ResearchProjectProductResponse" + ResearchProjectServiceResponse: + description: ResearchProjectService Response Object + schema: + $ref: "#/definitions/ResearchProjectServiceResponse" + ResearchProjectResponse: + description: ResearchProject Response Object + schema: + $ref: "#/definitions/ResearchProjectResponse" + ResearchProjectTopicResponse: + description: ResearchProjectTopic Response Object + schema: + $ref: "#/definitions/ResearchProjectTopicResponse" + RoleResponse: + description: Response with Role objects + schema: + $ref: "#/definitions/RoleResponse" + SalesforcePostResponse: + description: Response from Salesforce + schema: + $ref: "#/definitions/SalesforcePostResponse" + ServerError: + description: Server Internal Error + schema: + $ref: "#/definitions/Error" + TemplateResponse: + description: Response with Template objects + schema: + $ref: "#/definitions/TemplateResponse" + TenantResponse: + description: Response with Tenant objects + schema: + $ref: "#/definitions/TenantResponse" + TopicResponse: + description: Response with Topic objects + schema: + $ref: "#/definitions/TopicResponse" + Unauthorized: + description: Access unauthorized, invalid API-KEY was used + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: Unprocessable Entity, likely a bad parameter + schema: + $ref: "#/definitions/Error" + UserResponse: + description: Response with User objects + schema: + $ref: "#/definitions/UserResponse" +paths: + /accounts: + delete: + description: Delete Account record + operationId: deleteAccount + parameters: + - $ref: "#/parameters/accountIdQuery" + responses: + "200": + $ref: "#/responses/DeleteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete An Account + tags: + - Accounts + get: + description: Return a list of all available Accounts + operationId: getAccounts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/emailQuery" + responses: + "200": + $ref: "#/responses/AccountResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of accounts + tags: + - Accounts + post: + description: Account record to be added + operationId: postAccounts + parameters: + - $ref: "#/parameters/accountRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new account + tags: + - Accounts + put: + description: Update one or more accounts specified by accountId + operationId: putAccounts + parameters: + - $ref: "#/parameters/accountRequest" + responses: + "200": + $ref: "#/responses/AccountResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a single account + tags: + - Accounts + /assets: + get: + description: Return a list of all available Assets + operationId: getAssets + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/assetIdQuery" + responses: + "200": + $ref: "#/responses/AssetResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of assets + tags: + - Assets + post: + description: Industry record to be added + operationId: postAssets + parameters: + - $ref: "#/parameters/assetRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new asset + tags: + - Assets + /clusters: + get: + description: Return a list of Cluster records from the datastore + operationId: getClusters + parameters: + - $ref: "#/parameters/clusterIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Clusters + tags: + - Clusters + post: + description: Create Clusters in Salesforce + operationId: postClusters + parameters: + - $ref: "#/parameters/clusterRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Clusters + tags: + - Clusters + put: + description: Update Cluster in Salesforce + operationId: putClusters + parameters: + - $ref: "#/parameters/clusterRequest" + responses: + "200": + $ref: "#/responses/ClusterResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Clusters + tags: + - Clusters + /companyproducts: + get: + description: Return a list of all available CompanyProducts + operationId: getCompanyProducts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/companyProductIdQuery" + responses: + "200": + $ref: "#/responses/CompanyProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of companyproducts + tags: + - CompanyProducts + post: + description: Industry record to be added + operationId: postCompanyProducts + parameters: + - $ref: "#/parameters/companyProductRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new companyproduct + tags: + - CompanyProducts + /companyservices: + get: + description: Return a list of all available CompanyServices + operationId: getCompanyServices + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/companyServiceIdQuery" + responses: + "200": + $ref: "#/responses/CompanyServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of companyservices + tags: + - CompanyServices + post: + description: Industry record to be added + operationId: postCompanyServices + parameters: + - $ref: "#/parameters/companyServiceRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new companyservice + tags: + - CompanyServices + /contacts: + delete: + description: Delete Contact record from Salesforce + operationId: deleteContacts + parameters: + - $ref: "#/parameters/contactIdQuery" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Delete a Contact record + tags: + - Contacts + get: + description: Retrieve Contact records from Salesforce + operationId: getContacts + parameters: + - $ref: "#/parameters/contactIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/nameQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/accountIdQuery" + - $ref: "#/parameters/emailQuery" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a Contact record + tags: + - Contacts + post: + description: Contacts record to be added + operationId: postContacts + parameters: + - $ref: "#/parameters/contactRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new Contacts + tags: + - Contacts + put: + description: Update Contact records in Salesforce + operationId: putContacts + parameters: + - $ref: "#/parameters/contactRequest" + responses: + "200": + $ref: "#/responses/ContactResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update a Contact record + tags: + - Contacts + /contracts: + get: + description: Return a list of all available Contracts + operationId: getContracts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/contractIdQuery" + responses: + "200": + $ref: "#/responses/ContractResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of contracts + tags: + - Contracts + /courselessons: + get: + operationId: getCourseLessons + security: + - ApiKeyAuth: [] + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of CourseLessons + tags: + - Courses + post: + operationId: postCourseLesson + security: + - ApiKeyAuth: [] + parameters: + - $ref: "#/parameters/CourseLessonRequest" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new CourseLesson + tags: + - Courses + put: + security: + - ApiKeyAuth: [] + operationId: updateCourseLesson + parameters: + - $ref: "#/parameters/CourseLessonRequest" + responses: + "200": + $ref: "#/responses/CourseLessonResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing CourseLesson + tags: + - Courses + /courses: + get: + description: Return a list of Course records from the datastore + operationId: getCourses + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Courses + tags: + - Courses + post: + description: Create Courses in Salesforce + operationId: postCourses + parameters: + - $ref: "#/parameters/CourseRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Courses + tags: + - Courses + put: + description: Update Course in Salesforce + operationId: putCourses + parameters: + - $ref: "#/parameters/CourseRequest" + responses: + "200": + $ref: "#/responses/CourseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Courses + tags: + - Courses + /coursesections: + get: + security: + - ApiKeyAuth: [] + operationId: getCourseSections + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of CourseSections + tags: + - Courses + post: + security: + - ApiKeyAuth: [] + operationId: postCourseSection + parameters: + - $ref: "#/parameters/CourseSectionRequest" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new CourseSection + tags: + - Courses + put: + security: + - ApiKeyAuth: [] + operationId: updateCourseSection + parameters: + - $ref: "#/parameters/CourseSectionRequest" + responses: + "200": + $ref: "#/responses/CourseSectionResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing CourseSection + tags: + - Courses + /databases: + get: + description: Return a list of Database records from the datastore + operationId: getDatabases + parameters: + - $ref: "#/parameters/databaseIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Databases + tags: + - Databases + post: + description: Create Databases in Salesforce + operationId: postDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Databases + tags: + - Databases + put: + description: Update Database in Salesforce + operationId: putDatabases + parameters: + - $ref: "#/parameters/databaseRequest" + responses: + "200": + $ref: "#/responses/DatabaseResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Databases + tags: + - Databases + /documents: + get: + description: Return a list of Document records from the datastore + operationId: getDocuments + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Documents + tags: + - Documents + post: + description: Create Documents in Salesforce + operationId: postDocuments + parameters: + - $ref: "#/parameters/documentRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Documents + tags: + - Documents + put: + description: Update Document in Salesforce + operationId: putDocuments + parameters: + - $ref: "#/parameters/documentRequest" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Documents + tags: + - Documents + /eventcategories: + get: + security: + - ApiKeyAuth: [] + operationId: getEventCategories + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/idQuery" + responses: + "200": + $ref: "#/responses/EventCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of Eventcategories + tags: + - Events + post: + security: + - ApiKeyAuth: [] + operationId: postEventCategories + parameters: + - $ref: "#/parameters/EventCategoryRequest" + responses: + "200": + $ref: "#/responses/EventCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create a new EventCategory + tags: + - Events + /events: + delete: + security: + - ApiKeyAuth: [] + operationId: deleteEvent + parameters: + - $ref: "#/parameters/idQuery" + responses: + "204": + description: No Content + summary: Delete a Event + tags: + - Events + get: + security: + - ApiKeyAuth: [] + operationId: getEvents + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/idQuery" + responses: + "200": + $ref: "#/responses/EventResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Get a list of Events + tags: + - Events + put: + security: + - ApiKeyAuth: [] + operationId: updateEvent + parameters: + - $ref: "#/parameters/idQuery" + responses: + "200": + $ref: "#/responses/EventResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Update an existing Event + tags: + - Events + /factors: + get: + description: Return a list of all available Factors + operationId: getFactors + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/factorIdQuery" + responses: + "200": + $ref: "#/responses/FactorResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of factors + tags: + - Factors + post: + description: Factor record to be added + operationId: postFactors + parameters: + - $ref: "#/parameters/factorRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new Factor + tags: + - Factors + /favorites: + get: + description: Return a list of Favorite records from the datastore + operationId: getFavorites + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/FavoriteResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Favorites + tags: + - Favorites + /financialstatements: + get: + description: Return a list of all available FinancialStatements + operationId: getFinancialStatements + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/financialStatementIdQuery" + responses: + "200": + $ref: "#/responses/FinancialStatementResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of financialStatements + tags: + - FinancialStatements + post: + description: FinancialStatement record to be added + operationId: postFinancialStatements + parameters: + - $ref: "#/parameters/financialStatementRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new FinancialStatement + tags: + - FinancialStatements + /industries: + get: + description: Return a list of all available Industries + operationId: getIndustries + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryIdQuery" + responses: + "200": + $ref: "#/responses/IndustryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industries + tags: + - Industries + post: + description: Industry record to be added + operationId: postIndustries + parameters: + - $ref: "#/parameters/industryRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new industry + tags: + - Industries + /industrycompanies: + get: + description: Return a list of all available IndustryCompanies + operationId: getIndustryCompanies + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryCompanyIdQuery" + responses: + "200": + $ref: "#/responses/IndustryCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industryCompanies + tags: + - IndustryCompanies + post: + description: IndustryCompany record to be added + operationId: postIndustryCompanies + parameters: + - $ref: "#/parameters/industryCompanyRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new IndustryCompany + tags: + - IndustryCompanies + /industryservices: + get: + description: Return a list of all available IndustryServices + operationId: getIndustryServices + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryServiceIdQuery" + responses: + "200": + $ref: "#/responses/IndustryServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industryServices + tags: + - IndustryServices + post: + description: IndustryService record to be added + operationId: postIndustryServices + parameters: + - $ref: "#/parameters/industryServiceRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new IndustryService + tags: + - IndustryServices + /industryproducts: + get: + description: Return a list of all available IndustryProducts + operationId: getIndustryProducts + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/industryProductIdQuery" + responses: + "200": + $ref: "#/responses/IndustryProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of industryProducts + tags: + - IndustryProducts + post: + description: Industry record to be added + operationId: postIndustryproducts + parameters: + - $ref: "#/parameters/industryProductRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new industryproduct + tags: + - IndustryProducts + /observations: + get: + description: Return a list of all available Observations + operationId: getObservations + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/observationIdQuery" + responses: + "200": + $ref: "#/responses/ObservationResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of observations + tags: + - Observations + post: + description: Observation record to be added + operationId: postObservations + parameters: + - $ref: "#/parameters/observationRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add a new Observation + tags: + - Observations + /promptanswers: + get: + description: Return a list of PromptAnswers records from the datastore + operationId: getPromptAnswers + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptResponses + tags: + - Prompts + post: + description: Create PromptAnswers + operationId: postPromptAnswers + parameters: + - $ref: "#/parameters/PromptAnswerRequest" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptResponses + tags: + - Prompts + put: + description: Update PromptAnswers + operationId: putPromptAnsweers + parameters: + - $ref: "#/parameters/PromptAnswerRequest" + responses: + "200": + $ref: "#/responses/PromptAnswerResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptResponse + tags: + - Prompts + /prompts: + get: + description: Return a list of Prompt records from the datastore + operationId: getPrompts + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of Prompts + tags: + - Prompts + post: + description: Create Prompts + operationId: postPrompts + parameters: + - $ref: "#/parameters/PromptRequest" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Prompts + tags: + - Prompts + put: + description: Update Prompt + operationId: putPrompts + parameters: + - $ref: "#/parameters/PromptRequest" + responses: + "200": + $ref: "#/responses/PromptResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Prompts + tags: + - Prompts + /promptcategories: + get: + description: Return a list of PromptCategory records from the datastore + operationId: getPromptCategories + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptCategories + tags: + - Prompts + post: + description: Create PromptCategories + operationId: postPromptCategories + parameters: + - $ref: "#/parameters/PromptCategoryRequest" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptCategories + tags: + - Prompts + put: + description: Update PromptCategory + operationId: putPromptCategories + parameters: + - $ref: "#/parameters/PromptCategoryRequest" + responses: + "200": + $ref: "#/responses/PromptCategoryResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptCategories + tags: + - Prompts + /prompttags: + get: + description: Return a list of PromptTag records from the datastore + operationId: getPromptTags + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of PromptTags + tags: + - Prompts + post: + description: Create PromptTags in Taxnexus + operationId: postPromptTags + parameters: + - $ref: "#/parameters/PromptTagRequest" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new PromptTags + tags: + - Prompts + put: + description: Update PromptTag in Taxnexus + operationId: putPromptTags + parameters: + - $ref: "#/parameters/PromptTagRequest" + responses: + "200": + $ref: "#/responses/PromptTagResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update PromptTags + tags: + - Prompts + /researchprojectcompanies: + get: + description: Return a list of ResearchProjectCompany records from the datastore + operationId: getResearchProjectCompanies + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectCompanies + tags: + - ResearchProjects + post: + description: Create ResearchProjectCompanies in the system + operationId: postResearchProjectCompanies + parameters: + - $ref: "#/parameters/ResearchProjectCompanyRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectCompanies + tags: + - ResearchProjects + put: + description: Update ResearchProjectCompany in the system + operationId: putResearchProjectCompanies + parameters: + - $ref: "#/parameters/ResearchProjectCompanyRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectCompanyResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectCompanies + tags: + - ResearchProjects + /researchprojectservices: + get: + description: Return a list of ResearchProjectService records from the datastore + operationId: getResearchProjectServices + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectServices + tags: + - ResearchProjects + post: + description: Create ResearchProjectServices in the system + operationId: postResearchProjectServices + parameters: + - $ref: "#/parameters/ResearchProjectServiceRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "201": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectServices + tags: + - ResearchProjects + put: + description: Update ResearchProjectService in the system + operationId: putResearchProjectServices + parameters: + - $ref: "#/parameters/ResearchProjectServiceRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectServiceResponse" + "201": + $ref: "#/responses/ResearchProjectServiceResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + /researchprojectdocuments: + get: + description: Return a list of ResearchProjectDocument records from the datastore + operationId: getResearchProjectDocuments + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectDocuments + tags: + - ResearchProjects + post: + description: Create ResearchProjectDocuments in the system + operationId: postResearchProjectDocuments + parameters: + - $ref: "#/parameters/ResearchProjectDocumentRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "201": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectDocuments + tags: + - ResearchProjects + put: + description: Update ResearchProjectDocument in the system + operationId: putResearchProjectDocuments + parameters: + - $ref: "#/parameters/ResearchProjectDocumentRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectDocumentResponse" + "201": + $ref: "#/responses/ResearchProjectDocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectDocuments + tags: + - ResearchProjects + /researchprojectproducts: + get: + description: Return a list of ResearchProjectProduct records from the datastore + operationId: getResearchProjectProducts + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectProducts + tags: + - ResearchProjects + post: + description: Create ResearchProjectProducts in the system + operationId: postResearchProjectProducts + parameters: + - $ref: "#/parameters/researchProjectProductRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectProducts + tags: + - ResearchProjects + put: + description: Update ResearchProjectProduct in the system + operationId: putResearchProjectProducts + parameters: + - $ref: "#/parameters/researchProjectProductRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectProductResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectProducts + tags: + - ResearchProjects + /researchprojects: + get: + description: Return a list of ResearchProject records from the datastore + operationId: getResearchProjects + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjects + tags: + - ResearchProjects + post: + description: Create ResearchProjects in the system + operationId: postResearchProjects + parameters: + - $ref: "#/parameters/ResearchProjectRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjects + tags: + - ResearchProjects + put: + description: Update ResearchProject in the system + operationId: putResearchProjects + parameters: + - $ref: "#/parameters/ResearchProjectRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjects + tags: + - ResearchProjects + /researchprojecttopics: + get: + description: Return a list of ResearchProjectTopic records from the datastore + operationId: getResearchProjectTopics + parameters: + - $ref: "#/parameters/idQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of ResearchProjectTopics + tags: + - ResearchProjects + post: + description: Create ResearchProjectTopics in the system + operationId: postResearchProjectTopics + parameters: + - $ref: "#/parameters/ResearchProjectTopicRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new ResearchProjectTopics + tags: + - ResearchProjects + put: + description: Update ResearchProjectTopic in the system + operationId: putResearchProjectTopics + parameters: + - $ref: "#/parameters/ResearchProjectTopicRequest" + responses: + "200": + $ref: "#/responses/ResearchProjectTopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update ResearchProjectTopics + tags: + - ResearchProjects + /roles: + get: + description: Return a list of Roles + operationId: getRoles + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/roleIdQuery" + responses: + "200": + $ref: "#/responses/RoleResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list of Roles + tags: + - Roles + /templates: + get: + description: Returns the PDF rendering template, or a link to where to get the template + operationId: getTemplates + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/templateIdQuery" + responses: + "200": + $ref: "#/responses/TemplateResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get PDF Rendering Templates + tags: + - Templates + /tenants: + get: + description: Return a list of Tenant records from the datastore + operationId: getTenants + parameters: + - $ref: "#/parameters/tenantIdQuery" + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Tenants + tags: + - Tenants + post: + description: Create Tenants in Salesforce + operationId: Tenants + parameters: + - $ref: "#/parameters/tenantRequest" + responses: + "201": + $ref: "#/responses/SalesforcePostResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create new Tenants + tags: + - Tenants + put: + description: Update Tenant in Salesforce + operationId: putTenants + parameters: + - $ref: "#/parameters/tenantRequest" + responses: + "200": + $ref: "#/responses/TenantResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update Tenants + tags: + - Tenants + /topics: + get: + description: Retrieve Topic records from the microservice + operationId: getTopics + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/topicIdQuery" + responses: + "200": + $ref: "#/responses/TopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get Topic records + tags: + - Topics + post: + description: Add new topics + operationId: postTopics + parameters: + - $ref: "#/parameters/topicRequest" + responses: + "200": + $ref: "#/responses/TopicResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Add new topics + tags: + - Topics + /users: + get: + description: Return a list of User records from the datastore + operationId: getUsers + parameters: + - $ref: "#/parameters/limitQuery" + - $ref: "#/parameters/offsetQuery" + - $ref: "#/parameters/userIdQuery" + - $ref: "#/parameters/activeQuery" + - $ref: "#/parameters/apiKeyQuery" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Get a list Users + tags: + - Users + post: + description: Create user records in Salesforce + operationId: postUsers + parameters: + - $ref: "#/parameters/newUserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Create new Salesforce User + tags: + - Users + put: + description: Update existing user records in Salesforce + operationId: putUsers + parameters: + - $ref: "#/parameters/newUserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update existing user records in Salesforce + tags: + - Users + /users/sessions: + put: + description: Update user records session data in Salesforce + operationId: putUsersSessions + parameters: + - $ref: "#/parameters/newUserRequest" + responses: + "200": + $ref: "#/responses/UserResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + security: + - ApiKeyAuth: [] + summary: Update user records session data in Salesforce + tags: + - Users +definitions: + Account: + properties: + AccountNumber: + description: Account Number + type: string + x-nullable: true + AccountSource: + description: The marketing origin of this account + type: string + x-nullable: true + Active: + type: boolean + x-nullable: true + AnnualRevenue: + description: Annual Revenue Estimate + format: double + type: number + x-nullable: true + BillingAddress: + $ref: "#/definitions/Address" + x-nullable: true + BillingContactID: + description: Contact ID + type: string + x-nullable: true + ClosedDate: + description: Closed Date + type: string + x-nullable: true + CloudRevenueTotal: + type: number + x-nullable: true + CloudType: + description: The type of cloud company + type: string + x-nullable: true + CloudYear: + description: The year company started cloud revenue + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CrunchbaseURL: + description: Crunchbase URL + type: string + x-nullable: true + Description: + description: Description of the account + type: string + x-nullable: true + EIN: + type: string + x-nullable: true + EarningsCall: + description: Earnings Call Date + type: string + x-nullable: true + Email: + description: Main Account Email + type: string + x-nullable: true + EquityFunding: + description: The amount of equity EquityFunding + type: number + x-nullable: true + Facebook: + description: Company Facebook URL + type: string + x-nullable: true + Fax: + description: Fax number + type: string + x-nullable: true + FoundedDate: + description: Date company founded + type: string + x-nullable: true + ID: + description: Account Id + type: string + IPODate: + description: IPO Date + type: string + x-nullable: true + ImageAltText: + type: string + x-nullable: true + ImageURL: + type: string + x-nullable: true + Industries: + description: Industries + type: string + x-nullable: true + Industry: + description: Industry + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LinkedIn: + description: Company LinkedIn URL + type: string + x-nullable: true + Location: + description: Headquarters Location Description + type: string + x-nullable: true + Logo: + description: Company Logo URL + type: string + x-nullable: true + MarketCapitalization: + description: Market Capitalization + type: number + x-nullable: true + Name: + description: Account Name + type: string + x-nullable: true + NumberInvestments: + description: Number of Investments + type: number + x-nullable: true + NumberOfEmployees: + description: Employee Count Estimate + format: int64 + type: number + x-nullable: true + OwnerID: + description: Account Owner User ID + type: string + x-nullable: true + Ownership: + description: Ownership + type: string + x-nullable: true + ParentID: + description: Parent Account + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + Publish: + description: Publish this record? + type: boolean + x-nullable: true + SIC: + description: SIC Code + type: string + x-nullable: true + SICDesc: + description: SIC Description + type: string + x-nullable: true + SalesforceFirst: + description: A Salesforce-First company? + type: boolean + x-nullable: true + ShippingAddress: + $ref: "#/definitions/Address" + x-nullable: true + ShippingContactID: + description: Shipping Contact ID + type: string + x-nullable: true + Site: + description: Account Site + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Company tagline + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + TickerSymbol: + description: Ticker Symbol + type: string + x-nullable: true + Twitter: + description: Twitter URL + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Website: + description: Website + type: string + x-nullable: true + YearStarted: + description: Year Started + type: string + x-nullable: true + type: object + AccountRequest: + properties: + data: + items: + $ref: "#/definitions/Account" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + AccountResponse: + description: An array of Account objects + properties: + data: + items: + $ref: "#/definitions/Account" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + Address: + properties: + City: + description: City + type: string + x-nullable: true + Country: + description: Country full name + type: string + x-nullable: true + CountryCode: + description: Country Code + type: string + x-nullable: true + PostalCode: + description: Postal Code + type: string + x-nullable: true + State: + description: State full name + type: string + x-nullable: true + StateCode: + description: State Code + type: string + x-nullable: true + Street: + description: Street number and name + type: string + x-nullable: true + type: object + Asset: + properties: + AccountID: + description: Account + type: string + x-nullable: true + Address: + $ref: "#/definitions/Address" + x-nullable: true + AssetLevel: + description: Asset Level + type: number + x-nullable: true + AssetProvidedByID: + description: Asset Provided By + type: string + x-nullable: true + AssetServicedByID: + description: Asset Serviced By + type: string + x-nullable: true + CompanyProductID: + description: Company Product + type: string + x-nullable: true + ConsequenceOfFailure: + description: Consequence Of Failure + type: string + x-nullable: true + ContactID: + description: Contact + type: string + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CurrentAmount: + description: Current Amount + type: number + x-nullable: true + CurrentLifecycleEndDate: + description: Current Lifecycle End Date + type: string + x-nullable: true + CurrentMrr: + description: Current Monthly Recurring Revenue + type: number + x-nullable: true + CurrentQuantity: + description: Current Quantity + type: number + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + DigitalAssetStatus: + description: Digital Asset Status + type: string + x-nullable: true + ExternalIdentifier: + description: External Id + type: string + x-nullable: true + HasLifecycleManagement: + description: Has Lifecycle Management + type: boolean + x-nullable: true + ID: + description: Record Id + type: string + InstallDate: + description: Install Date + type: string + x-nullable: true + IsCompetitorProduct: + description: Competitor Asset + type: boolean + x-nullable: true + IsInternal: + description: Internal Asset + type: boolean + x-nullable: true + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LocationID: + description: Location + type: string + x-nullable: true + MIMEType: + description: MIME Type + type: string + x-nullable: true + ManufactureDate: + description: Manufacture Date + type: string + x-nullable: true + Name: + description: Asset Name + type: string + x-nullable: true + ParentID: + description: Parent Asset + type: string + x-nullable: true + Price: + description: Price + type: number + x-nullable: true + Product2ID: + description: Product + type: string + x-nullable: true + ProductCode: + description: Product Code + type: string + x-nullable: true + ProductDescription: + description: Product Description + type: string + x-nullable: true + ProductFamily: + description: Product Family + type: string + x-nullable: true + PurchaseDate: + description: Purchase Date + type: string + x-nullable: true + Quantity: + description: Quantity + type: number + x-nullable: true + RootAssetID: + description: Root Asset + type: string + x-nullable: true + SerialNumber: + description: Serial Number + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + StatusReason: + description: Status Reason + type: string + x-nullable: true + StockKeepingUnit: + description: Product SKU + type: string + x-nullable: true + TenantID: + description: Tenant ID + type: string + x-nullable: true + TotalLifecycleAmount: + description: Total Lifecycle Amount + type: number + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + UsageEndDate: + description: Usage End Date + type: string + x-nullable: true + type: object + AssetRequest: + description: An array of Asset objects + properties: + Data: + items: + $ref: "#/definitions/Asset" + type: array + type: object + AssetResponse: + description: An array of Asset objects + properties: + Data: + items: + $ref: "#/definitions/Asset" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Cluster: + properties: + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + Environment: + description: Environment + type: string + x-nullable: true + Gateway: + description: Gateway + type: string + x-nullable: true + ID: + description: Record Id + type: string + IpAddress: + description: IP Address + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Cluster Name + type: string + x-nullable: true + OwnerID: + description: Owner + type: string + x-nullable: true + Ref: + description: External Reference + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + Subnet: + description: Subnet + type: string + x-nullable: true + TenantID: + description: tenantid + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + Zone: + description: Zone + type: string + x-nullable: true + type: object + ClusterRequest: + properties: + data: + items: + $ref: "#/definitions/Cluster" + type: array + meta: + $ref: "#/definitions/RequestMeta" + required: + - data + type: object + ClusterResponse: + description: An array of cluster objects + properties: + data: + items: + $ref: "#/definitions/Cluster" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + CompanyProduct: + description: A software product or service vended by a Company + properties: + AccountID: + description: ID of the Company that owns this Product + type: string + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of product + type: string + x-nullable: true + FullDescription: + description: Full Description of product + type: string + x-nullable: true + ID: + description: Record Id + type: string + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Product Name + type: string + x-nullable: true + ProductVideoID: + description: Product Video ID + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: TagLine + type: string + x-nullable: true + URL: + description: Website + type: string + x-nullable: true + type: object + CompanyProductRequest: + properties: + data: + items: + $ref: "#/definitions/CompanyProduct" + type: array + meta: + $ref: "#/definitions/RequestMeta" + required: + - data + type: object + CompanyProductResponse: + properties: + data: + items: + $ref: "#/definitions/CompanyProduct" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + CompanyService: + description: A service performed by a Company + properties: + ID: + description: Record Id + type: string + AccountID: + description: ID of the Company that owns this Service + type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description of service + type: string + x-nullable: true + FullDescription: + description: Full Description of service + type: string + x-nullable: true + ImageAltText: + description: Image Alt Text + type: string + x-nullable: true + ImageURL: + description: Image URL + type: string + x-nullable: true + Industries: + description: Industries + items: + $ref: "../../lib/swagger/defs/industry.yaml#/Industry" + type: array + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Logo: + description: Logo + type: string + x-nullable: true + Name: + description: Service Name + type: string + x-nullable: true + Published: + description: Published + type: boolean + x-nullable: true + SalesforceSpecific: + description: Salesforce Specific + type: boolean + x-nullable: true + ServiceVideoID: + description: Service Video ID + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TagLine: + description: Tag Line + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + type: object + CompanyServiceRequest: + description: An array of CompanyService objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/CompanyService" + type: array + type: object + CompanyServiceResponse: + description: An array of CompanyService objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/CompanyService" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Contact: + properties: + AccountID: + description: The primary account ID of this contact + type: string + x-nullable: true + AssistantName: + description: Assistant Name + type: string + x-nullable: true + AssistantPhone: + description: Asst. Phone + type: string + x-nullable: true + BirthDate: + description: Birthdate + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CrunchbaseURL: + description: Crunchbase URL + type: string + x-nullable: true + Department: + description: Department + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + DoNotCall: + description: Do Not Call? + type: boolean + x-nullable: true + Email: + description: Email address + type: string + x-nullable: true + EmailBounceDate: + description: Email Bounce Date + type: string + x-nullable: true + EmailBounceReason: + description: Email Bounce Reason + type: string + x-nullable: true + Facebook: + description: Fax Number + type: string + x-nullable: true + Fax: + type: string + x-nullable: true + FirstName: + description: First Name + type: string + x-nullable: true + HasOptedOutOfEmail: + description: Email Opt Out + type: boolean + x-nullable: true + HasOptedOutOfFax: + description: Fax Opt Out + type: boolean + x-nullable: true + HomePhone: + description: Home Phone + type: string + x-nullable: true + ID: + description: Record Id + type: string + IsEmailBounced: + description: Does this contact have bounced emails? + type: boolean + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LastName: + description: Last Name + type: string + x-nullable: true + LeadSource: + description: Lead Source + type: string + x-nullable: true + LinkedIn: + description: LinkedIn Page + type: string + x-nullable: true + MailingAddress: + $ref: "#/definitions/Address" + MobilePhone: + description: Mobile Phone + type: string + x-nullable: true + Name: + description: Full Name + type: string + x-nullable: true + NumberInvestments: + description: Number of Investments + type: number + x-nullable: true + OtherAddress: + $ref: "#/definitions/Address" + OtherPhone: + description: Other Phone + type: string + x-nullable: true + OwnerID: + description: The User ID of the user who owns this Contact + type: string + x-nullable: true + PersonalEmail: + description: Personal Email Address for this Contact + type: string + x-nullable: true + Phone: + description: Phone Number + type: string + x-nullable: true + PhotoURL: + description: URL of a photograph of this User + type: string + x-nullable: true + ReportsToID: + description: Reports To User ID + type: string + x-nullable: true + Salutation: + description: Salutation + type: string + x-nullable: true + Slug: + description: Slug + type: string + x-nullable: true + TenantID: + description: tenant identifier + type: string + x-nullable: true + Title: + description: Contact Title + type: string + x-nullable: true + Twitter: + type: string + x-nullable: true + type: object + ContactRequest: + properties: + data: + items: + $ref: "#/definitions/Contact" + type: array + meta: + $ref: "#/definitions/RequestMeta" + required: + - data + type: object + ContactResponse: + properties: + data: + items: + $ref: "#/definitions/Contact" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + Contract: + properties: + AccountID: + description: Account + type: string + x-nullable: true + ActivatedByID: + description: Activated By + type: string + x-nullable: true + ActivatedDate: + description: Activated Date + type: string + x-nullable: true + BillingAddress: + $ref: "#/definitions/Address" + description: Billing Address + BillingContactID: + description: Billing Contact + type: string + x-nullable: true + CompanySignedDate: + description: Company Signed Date + type: string + x-nullable: true + CompanySignedID: + description: Company Signed By + type: string + x-nullable: true + ContractNumber: + description: Contract Number + type: string + x-nullable: true + ContractTerm: + description: Contract Term (months) + type: number + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + CustomerSignedDate: + description: Customer Signed Date + type: string + x-nullable: true + CustomerSignedID: + description: Customer Signed By + type: string + x-nullable: true + CustomerSignedTitle: + description: Customer Signed Title + type: string + x-nullable: true + DefaultEndUserID: + description: End User + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + EndDate: + description: Contract End Date + type: string + x-nullable: true + EndUserID: + description: End User + type: string + x-nullable: true + HourlyRate: + description: Hourly Rate + type: number + x-nullable: true + ID: + description: Telnexus Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Contract Name + type: string + x-nullable: true + PaymentMethodID: + description: Payment Method + type: string + x-nullable: true + PaymentTerms: + description: Payment Terms + type: string + x-nullable: true + Perpetual: + description: Perpetual Agreement? + type: boolean + x-nullable: true + ShippingAddress: + $ref: "#/definitions/Address" + description: Shipping Address + ShippingContactID: + description: Shipping Contact + type: string + x-nullable: true + StartDate: + description: Contract Start Date + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + TenantID: + description: Tenant Identifier + type: string + x-nullable: true + type: object + ContractRequest: + properties: + Data: + items: + $ref: "#/definitions/Contract" + type: array + type: object + ContractResponse: + properties: + Data: + items: + $ref: "#/definitions/Contract" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Database: + description: A Database provisioned and owned by a Tenant + properties: + Active: + description: Is this database active? + type: boolean + x-nullable: true + ClusterID: + description: The ID of the Cluster in which this database is deployed + type: string + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + DSN: + description: Database connection string + type: string + x-nullable: true + DatabaseName: + description: The name of the physical database in the cluster + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modifed Date + type: string + x-nullable: true + Microservices: + description: List of microservices implemented by this Database + type: string + x-nullable: true + Status: + description: The current status of this Tenant + type: string + x-nullable: true + TenantID: + description: The ID of the tenant who owns this Database + type: string + x-nullable: true + Type: + description: The type of Database (mysql, etc) + type: string + x-nullable: true + type: object + DocumentRequest: + description: An array of Document objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/document.yaml#/Document" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + DocumentResponse: + description: An array of Document objects + properties: + data: + items: + $ref: "../../lib/swagger/defs/document.yaml#/Document" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + DatabaseRequest: + description: An array of Database objects + properties: + data: + items: + $ref: "#/definitions/Database" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + DatabaseResponse: + description: An array of Database objects + properties: + data: + items: + $ref: "#/definitions/Database" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + DeleteResponse: + properties: + Data: + items: + $ref: "#/definitions/Message" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Error: + properties: + Code: + format: int64 + type: integer + Fields: + type: string + Message: + type: string + type: object + Factor: + description: A Factor of analysis within a research topic + properties: + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Factor Name + type: string + x-nullable: true + Observations: + description: The list of Observations used to analyze this industry + items: + $ref: "#/definitions/Observation" + type: array + x-nullable: true + Slug: + description: The slug of the corresponding page on the CMS + type: string + x-nullable: true + TopicID: + description: The ID of the Topic that owns this Factor + type: string + x-nullable: true + type: object + FactorRequest: + description: An array of Factor objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Factor" + type: array + type: object + FactorResponse: + description: An array of Factor objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Factor" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + FavoriteRequest: + description: An array of Favorite objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/favorite.yaml#/Favorite" + type: array + type: object + FavoriteResponse: + description: An array of Favorite objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/favorite.yaml#/Favorite" + type: array + type: object + FinancialStatement: + description: A financial statement for a company + properties: + AccessNumber: + description: EDGAR Access Number + type: string + x-nullable: true + AccountID: + description: Account ID + type: string + x-nullable: true + CloudRevenue: + description: Cloud Revenue + type: number + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + EdgarURL: + description: EDGAR URL + type: string + x-nullable: true + FilingType: + description: Filing Type + type: string + x-nullable: true + GrossProfit: + description: Gross Profit + type: number + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + NetIncome: + description: Net Income + type: number + x-nullable: true + PeriodEndDate: + description: Period End Date + type: string + x-nullable: true + TotalRevenue: + description: Total Revenue + type: number + x-nullable: true + Year: + description: Year + type: string + x-nullable: true + type: object + FinancialStatementRequest: + description: An array of FinancialStatement objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/FinancialStatement" + type: array + type: object + FinancialStatementResponse: + description: An array of FinancialStatement objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/FinancialStatement" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryCompany: + description: Junction object between Industry and Company + properties: + CompanyID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + ID: + description: Record Id + type: string + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Path: + type: string + x-nullable: true + type: object + IndustryCompanyRequest: + description: An array of IndustryCompany objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryCompany" + type: array + type: object + IndustryCompanyResponse: + description: An array of IndustryCompany objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryCompany" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryProduct: + description: Junction object between Industry and CompanyProduct + properties: + CompanyProduct: + $ref: "#/definitions/CompanyProduct" + CompanyProductID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + ID: + description: Record Id + type: string + Industry: + $ref: "../../lib/swagger/defs/industry.yaml#/Industry" + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object + IndustryProductRequest: + description: An array of IndustryProduct objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryProduct" + type: array + type: object + IndustryProductResponse: + description: An array of IndustryProduct objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryProduct" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryService: + description: Junction Object bewtwen Industry and CompanyService + properties: + ID: + description: Record Id + type: string + CompanyService: + $ref: "#/definitions/CompanyService" + CompanyServiceID: + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Industry: + $ref: "../../lib/swagger/defs/industry.yaml#/Industry" + IndustryID: + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + type: object + IndustryServiceRequest: + description: An array of IndustryService objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/IndustryService" + type: array + type: object + IndustryServiceResponse: + description: An array of IndustryService objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/IndustryService" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + IndustryRequest: + description: An array of Industry objects submitted for processing + properties: + Data: + items: + $ref: "../../lib/swagger/defs/industry.yaml#/Industry" + type: array + type: object + IndustryResponse: + description: An array of Industry objects produced in response to a request + properties: + Data: + items: + $ref: "../../lib/swagger/defs/industry.yaml#/Industry" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + InvalidError: + allOf: + - $ref: "#/definitions/Error" + - properties: + details: + items: + type: string + type: array + type: object + Message: + properties: + message: + type: string + ref: + type: string + x-nullable: true + status: + format: int64 + type: number + type: object + Observation: + description: A data point collected while analyzing a Factor + properties: + AccountID: + description: The ID of the Company being analyzed + type: string + x-nullable: true + CompanyProductID: + description: The ID of the Product being analyzed + type: string + x-nullable: true + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Notes concerning data collection + type: string + x-nullable: true + FactorID: + description: The ID of the Factor that owns this Observation + type: string + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + SubjectType: + description: Is the subject a Company or a Product? + type: string + x-nullable: true + Value: + description: The data point collected + type: string + x-nullable: true + type: object + ObservationRequest: + description: An array of Observation objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Observation" + type: array + type: object + ObservationResponse: + description: An array of Observation objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Observation" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Pagination: + properties: + limit: + format: int64 + type: number + pagesize: + format: int64 + type: number + poffset: + format: int64 + type: integer + setsize: + format: int64 + type: number + type: object + PromptAnswerRequest: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-answer.yaml#/PromptAnswer" + type: array + type: object + PromptAnswerResponse: + description: An array of PromptResponse objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-answer.yaml#/PromptAnswer" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + RequestMeta: + properties: + ExternalAccount: + description: Account Number of the Reseller or OEM + type: string + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + Pagination: + $ref: "#/definitions/Pagination" + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object + Role: + description: A functional role within a Tenant + properties: + Auth0RoleID: + description: the corresponding auth0 role + type: string + x-nullable: true + CreatedByID: + description: created by + type: string + x-nullable: true + CreatedDate: + description: created date + type: string + x-nullable: true + Description: + description: role description + type: string + x-nullable: true + ID: + description: record id + type: string + LastModifiedByID: + description: last modified by + type: string + x-nullable: true + LastModifiedDate: + description: last modifed date + type: string + x-nullable: true + RoleName: + description: the name of this role + type: string + x-nullable: true + TenantID: + description: the id of the tenant that owns this role + type: string + x-nullable: true + type: object + RoleRequest: + description: An array of Role objects + properties: + data: + items: + $ref: "#/definitions/Role" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + RoleResponse: + description: An array of Role objects + properties: + data: + items: + $ref: "#/definitions/Role" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + SalesforcePost: + description: Relationship object that connects user to a role + properties: + ID: + type: string + type: object + SalesforcePostResponse: + description: An array of Print-Ready ingest Objects + properties: + data: + items: + $ref: "#/definitions/SalesforcePost" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + Template: + properties: + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + description: Description + type: string + x-nullable: true + HTML: + description: HTML Body + type: string + x-nullable: true + ID: + description: Record Id + type: string + IsActive: + description: Active? + type: boolean + x-nullable: true + IsMaster: + description: Master Template? + type: boolean + x-nullable: true + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Name: + description: Template Name + type: string + x-nullable: true + ObjectType: + description: Object + type: string + x-nullable: true + RecordTypeName: + description: Record Type Name + type: string + x-nullable: true + TenantID: + description: tenant identifier + type: string + x-nullable: true + Type: + description: Type + type: string + x-nullable: true + URL: + description: URL + type: string + x-nullable: true + type: object + TemplateResponse: + properties: + data: + items: + $ref: "#/definitions/Template" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + Tenant: + description: Account Tenant + properties: + AccountID: + description: The Account that owns this Tenant + type: string + x-nullable: true + Active: + description: Is this Tenant currently active? + type: boolean + x-nullable: true + CreatedByID: + description: Created By + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Databases: + items: + $ref: "#/definitions/Database" + type: array + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By + type: string + x-nullable: true + LastModifiedDate: + description: Last Modifed Date + type: string + x-nullable: true + Roles: + items: + $ref: "#/definitions/Role" + type: array + Status: + description: The current status of this Tenant + type: string + x-nullable: true + TenantName: + description: Name of the Tenant Resource + type: string + x-nullable: true + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + Type: + description: Type of tenant + type: string + x-nullable: true + Version: + description: The version number of the Tenant Onboarding system used to create this tenant + type: string + x-nullable: true + type: object + TenantRequest: + description: An array of Tenant objects + properties: + data: + items: + $ref: "#/definitions/Tenant" + type: array + meta: + $ref: "#/definitions/RequestMeta" + type: object + TenantResponse: + description: An array of Tenant objects + properties: + data: + items: + $ref: "#/definitions/Tenant" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + TenantUser: + description: Relationship object that connects users to a tenant + properties: + AccessLevel: + description: The Tenant access level for this User + type: string + TenantID: + description: The Tenant ID + type: string + UserID: + description: The User ID + type: string + type: object + Topic: + description: A research topic that collects data + properties: + CreatedByID: + description: Created By User ID + type: string + x-nullable: true + CreatedDate: + description: Created Date + type: string + x-nullable: true + Description: + description: Topic Description + type: string + x-nullable: true + Factors: + description: The list of Factors used to analyze this industry + items: + $ref: "#/definitions/Factor" + type: array + x-nullable: true + ID: + description: Record Id + type: string + LastModifiedByID: + description: Last Modified By User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + Name: + description: Topic Name + type: string + x-nullable: true + ParentTopicID: + description: The ID of the Parent Topic + type: string + x-nullable: true + Slug: + description: The CMS Slug for this Topic + type: string + x-nullable: true + type: object + TopicRequest: + description: An array of Topic objects submitted for processing + properties: + Data: + items: + $ref: "#/definitions/Topic" + type: array + type: object + TopicResponse: + description: An array of Topic objects produced in response to a request + properties: + Data: + items: + $ref: "#/definitions/Topic" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + User: + properties: + APIGatewayURL: + description: API Gateway URL + type: string + x-nullable: true + APIGatewayUser: + description: API Gateway User + type: string + x-nullable: true + APIKey: + description: API Key + type: string + x-nullable: true + AboutMe: + description: About Me + type: string + x-nullable: true + AccountID: + description: Account ID + type: string + x-nullable: true + Address: + $ref: "#/definitions/Address" + x-nullable: true + Alias: + description: Alias + type: string + x-nullable: true + Auth0UserID: + description: Auth0 User Id + type: string + x-nullable: true + CommunityNickname: + description: Nickname + type: string + x-nullable: true + CompanyName: + description: Company Name + type: string + x-nullable: true + ContactID: + description: Contact + type: string + x-nullable: true + CreatedByID: + description: Created User ID + type: string + x-nullable: true + CreatedDate: + description: Date Created + type: string + x-nullable: true + DelegatedApproverID: + description: Delegated Approver + type: string + x-nullable: true + Department: + description: Department + type: string + x-nullable: true + Division: + description: Division + type: string + x-nullable: true + Email: + description: Email address + type: string + x-nullable: true + EmployeeNumber: + description: Employee Number + type: string + x-nullable: true + EndOfDay: + description: Time day ends + type: string + x-nullable: true + Environment: + description: Environment + type: string + x-nullable: true + Extension: + description: Extension + type: string + x-nullable: true + FabricAPIKey: + description: Fabric API Key + type: string + x-nullable: true + Fax: + description: Fax + type: string + x-nullable: true + FirstName: + description: The first name + type: string + x-nullable: true + ForecastEnabled: + description: Allow Forecasting + type: boolean + x-nullable: true + FullPhotoURL: + description: Full Photo URL + type: string + x-nullable: true + GitHub: + description: GitHub + type: string + x-nullable: true + ID: + description: Record ID + type: string + IsActive: + description: Active + type: boolean + x-nullable: true + IsPortalEnabled: + description: Is the user enabled for Communities? + type: boolean + x-nullable: true + IsProfilePhotoActive: + description: Has Profile Photo + type: boolean + x-nullable: true + IsSystemControlled: + type: boolean + x-nullable: true + LastIP: + description: IP address of last login + type: string + x-nullable: true + LastLogin: + description: Last login time + type: string + x-nullable: true + LastModifiedByID: + description: Last Modified User ID + type: string + x-nullable: true + LastModifiedDate: + description: Last Modified Date + type: string + x-nullable: true + LastName: + description: The Last Name + type: string + x-nullable: true + LinkedIn: + description: LinkedIn + type: string + x-nullable: true + LoginCount: + description: Number of times user has logged in + format: int64 + type: number + x-nullable: true + ManagerID: + description: Manager + type: string + x-nullable: true + MobilePhone: + description: Mobile + type: string + x-nullable: true + Name: + description: Name + type: string + x-nullable: true + OutOfOfficeMessage: + description: Out of office message + type: string + x-nullable: true + Phone: + description: Phone + type: string + x-nullable: true + PortalRole: + description: Portal Role Level + type: string + x-nullable: true + ProfileID: + description: Profile + type: string + x-nullable: true + ReceivesAdminEmails: + description: Info Emails + type: boolean + x-nullable: true + ReceivesAdminInfoEmails: + description: Admin Info Emails + type: boolean + x-nullable: true + ReceivesInfoEmails: + description: Info Emails + type: boolean + x-nullable: true + SenderEmail: + description: Email Sender Address + type: string + x-nullable: true + SenderName: + description: Email Sender Name + type: string + x-nullable: true + Signature: + description: Email Signature + type: string + x-nullable: true + SmallPhotoURL: + description: Small Photo URL + type: string + x-nullable: true + StartOfDay: + description: The time day starts + type: string + x-nullable: true + Status: + description: Status + type: string + x-nullable: true + ExternalAccount: + description: Account + type: string + x-nullable: true + TenantID: + description: Tenant ID associated with this user + type: string + x-nullable: true + TenantUsers: + items: + $ref: "#/definitions/TenantUser" + type: array + x-nullable: true + TimeZone: + description: Time Zone + type: string + x-nullable: true + Title: + description: Title + type: string + x-nullable: true + Twitter: + description: Twitter + type: string + x-nullable: true + UserRoleID: + description: Role + type: string + x-nullable: true + UserRoles: + items: + $ref: "#/definitions/UserRole" + type: array + x-nullable: true + UserType: + description: User Type + type: string + x-nullable: true + Username: + description: Username + type: string + x-nullable: true + type: object + UserRequest: + description: An array of User Objects to post + properties: + data: + items: + $ref: "#/definitions/User" + type: array + type: object + UserResponse: + description: An array of Print-Ready ingest Objects + properties: + data: + items: + $ref: "#/definitions/User" + type: array + meta: + $ref: "#/definitions/ResponseMeta" + type: object + UserRole: + description: Relationship object that connects user to a role + properties: + Auth0roleID: + type: string + x-nullable: true + CreatedByID: + type: string + x-nullable: true + CreatedDate: + type: string + x-nullable: true + Description: + type: string + x-nullable: true + ID: + type: string + # Industries: + # description: Industries + # properties: + # items: + # $ref: "#/definitions/Industry" + LastModifiedByID: + type: string + x-nullable: true + LastModifiedDate: + type: string + x-nullable: true + Name: + type: string + x-nullable: true + RoleID: + type: string + x-nullable: true + UserID: + type: string + x-nullable: true + type: object + EventRequest: + description: An array of Event objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/event.yaml#/Event" + type: array + type: object + EventResponse: + description: An array of Event objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/event.yaml#/Event" + type: array + type: object + EventCategoryRequest: + description: An array of EventCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/event-category.yaml#/EventCategory" + type: array + type: object + EventCategoryResponse: + description: An array of EventCategory objects + properties: + Meta: + $ref: "#/definitions/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/event-category.yaml#/EventCategory" + type: array + type: object + CourseLessonRequest: + description: An array of CourseLesson objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-lesson.yaml#/CourseLesson" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseLessonResponse: + description: An array of CourseLesson objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-lesson.yaml#/CourseLesson" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseRequest: + description: An array of Course objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course.yaml#/Course" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseResponse: + description: An array of Course objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course.yaml#/Course" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseSectionRequest: + description: An array of CourseSection objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-section.yaml#/CourseSection" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + CourseSectionResponse: + description: An array of CourseSection objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/course-section.yaml#/CourseSection" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + ResearchProjectCompanyResponse: + description: An array of ResearchProjectCompany objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-company.yaml#/ResearchProjectCompany" + type: array + type: object + ResearchProjectRequest: + description: An array of ResearchProject objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project.yaml#/ResearchProject" + type: array + type: object + ResearchProjectResponse: + description: An array of ResearchProject objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project.yaml#/ResearchProject" + type: array + type: object + ResearchProjectDocumentRequest: + description: An array of ResearchProjectDocument objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-document.yaml#/ResearchProjectDocument" + type: array + type: object + ResearchProjectDocumentResponse: + description: An array of ResearchProjectDocument objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-document.yaml#/ResearchProjectDocument" + type: array + type: object + ResearchProjectProductRequest: + description: An array of ResearchProjectProduct objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-product.yaml#/ResearchProjectProduct" + type: array + type: object + ResearchProjectProductResponse: + description: An array of ResearchProjectProduct objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-product.yaml#/ResearchProjectProduct" + type: array + type: object + ResearchProjectTopicRequest: + description: An array of ResearchProjectTopic objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-topic.yaml#/ResearchProjectTopic" + type: array + type: object + ResearchProjectTopicResponse: + description: An array of ResearchProjectTopic objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-topic.yaml#/ResearchProjectTopic" + type: array + type: object + ResearchProjectCompanyRequest: + description: An array of ResearchProjectCompany objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-company.yaml#/ResearchProjectCompany" + type: array + type: object + ResearchProjectServiceRequest: + description: An array of ResearchProjectService objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/research-project-service.yaml#/ResearchProjectService" + type: array + type: object + ResearchProjectServiceResponse: + description: An array of ResearchProjectService objects + properties: + Meta: + $ref: "../../lib/swagger/defs/response-meta.yaml#/ResponseMeta" + Data: + items: + $ref: "../../lib/swagger/defs/research-project-service.yaml#/ResearchProjectService" + type: array + type: object + PromptRequest: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "#/definitions/Prompt" + type: array + type: object + PromptResponse: + description: An array of Prompt objects + properties: + Data: + items: + $ref: "#/definitions/Prompt" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + PromptCategoryRequest: + description: An array of PromptCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-category.yaml#/PromptCategory" + type: array + type: object + PromptCategoryResponse: + description: An array of PromptCategory objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-category.yaml#/PromptCategory" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + PromptTagRequest: + description: An array of PromptTag objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-tag.yaml#/PromptTag" + type: array + type: object + PromptTagResponse: + description: An array of PromptTag objects + properties: + Data: + items: + $ref: "../../lib/swagger/defs/prompt-tag.yaml#/PromptTag" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Prompt: + description: A prompt + properties: + ID: + description: Record Id + type: string + CreatedByID: + description: The ID of the user who created the prompt + type: string + x-nullable: true + CreatedDate: + description: The date the prompt was created + type: string + x-nullable: true + Icon: + description: The icon for the prompt + type: string + x-nullable: true + ImageAltText: + description: The alt text for the prompt image + type: string + x-nullable: true + ImageURL: + description: The URL of the prompt image + type: string + x-nullable: true + LastModifiedByID: + description: The ID of the user who last modified the prompt + type: string + x-nullable: true + LastModifiedDate: + description: The date the prompt was last modified + type: string + x-nullable: true + Logo: + description: The logo for the prompt + type: string + x-nullable: true + Model: + description: The model for the prompt + type: string + x-nullable: true + Name: + description: The name of the prompt + type: string + x-nullable: true + Order: + description: The order of the prompt + type: number + x-nullable: true + Parameters: + description: A list of parameters encoded as JSON + type: string + x-nullable: true + Prompt: + description: The prompt text + type: string + x-nullable: true + PromptCategoryID: + description: The ID of the prompt category + type: string + x-nullable: true + ResearchProjectIDs: + description: A list of research project IDs + items: + type: string + type: array + x-nullable: true + Slug: + description: The slug for the prompt + type: string + x-nullable: true + SystemPrompt: + description: The System prompt to be used + type: string + x-nullable: true + Tags: + description: A list of tags (from salesforce newline separated) + type: string + x-nullable: true + Temperature: + description: The temperature of the prompt + type: number + x-nullable: true + TenantID: + description: The ID of the tenant + type: string + x-nullable: true + Title: + description: The title of the prompt + type: string + x-nullable: true + UsedCount: + description: The number of times the prompt has been used + type: number + x-nullable: true + UserID: + description: The ID of the user who created the prompt + type: string + x-nullable: true + type: object diff --git a/swagger/external/stash-vernonkeenan.yaml b/swagger/external/stash-vernonkeenan.yaml new file mode 100644 index 0000000..e58828c --- /dev/null +++ b/swagger/external/stash-vernonkeenan.yaml @@ -0,0 +1,215 @@ +swagger: "2.0" +info: + version: 0.3.0 + title: "stash" + description: "PDF Storage Microservice" + termsOfService: "https://salesforcedevops.net/terms/" + contact: + email: "vern@vernonkeenan.com" + license: + name: "Proprietary - Copyright (c) 2018-2023 by Vernon Keenan" +securityDefinitions: + ApiKeyAuth: + type: "apiKey" + in: "header" + name: "X-API-Key" +security: + - ApiKeyAuth: [] +schemes: + - "https" +basePath: "/vk/stash/v1" +host: "gw.tnxs.net" +consumes: + - "application/json" +produces: + - "application/json" +parameters: + X-API-Key: + name: X-API-Key + in: "header" + required: true + type: string + PDFRequest: + description: An array of new PDF records + in: body + name: PDFRequest + required: true + schema: + $ref: "#/definitions/PDFRequest" + pdfIdQueryRequired: + description: PDF record ID + in: query + name: pdfId + required: true + type: string +responses: + AccessForbidden: + description: "Access forbidden, account lacks access" + schema: + $ref: "#/definitions/Error" + NotFound: + description: Resource was not found + schema: + $ref: "#/definitions/Error" + PdfResponse: + description: Response with an array of pdfs + schema: + $ref: "#/definitions/DocumentResponse" + ServerError: + description: Server Internal Error + schema: + $ref: "#/definitions/Error" + Unauthorized: + description: "Access Unauthorized, invalid API-KEY was used" + schema: + $ref: "#/definitions/Error" + UnprocessableEntity: + description: "Unprocessable Entity, likely a bad parameter" + schema: + $ref: "#/definitions/Error" + DocumentResponse: + description: Rendered documents response + schema: + $ref: "#/definitions/DocumentResponse" +paths: + /pdfs: + post: + description: Store new PDFs + operationId: postPdfs + parameters: + - $ref: "#/parameters/PDFRequest" + responses: + "200": + $ref: "#/responses/DocumentResponse" + "401": + $ref: "#/responses/Unauthorized" + "403": + $ref: "#/responses/AccessForbidden" + "404": + $ref: "#/responses/NotFound" + "422": + $ref: "#/responses/UnprocessableEntity" + "500": + $ref: "#/responses/ServerError" + summary: Create new PDFs + tags: + - StashPdf +definitions: + Document: + properties: + Filename: + type: string + ID: + type: string + SagaType: + type: string + ParentID: + type: string + Title: + type: string + URI: + type: string + type: object + DocumentResponse: + description: An array of rendered documents + properties: + Data: + items: + $ref: "#/definitions/Document" + type: array + Meta: + $ref: "#/definitions/ResponseMeta" + type: object + Error: + properties: + Code: + format: int64 + type: number + Fields: + type: string + Message: + type: string + type: object + NewPDF: + properties: + Description: + description: Description + type: string + Filename: + description: Filename only + type: string + HTML: + description: The HTML data in text format + type: string + LastAccessedByID: + description: Last Accessed By + type: string + ObjectType: + description: This document's financial object origination + type: string + OwnerID: + description: User who created the PDF + type: string + ParentID: + description: ID of the record that owns this PDF + type: string + Ref: + description: External reference if any + type: string + Title: + description: Document descriptive title + type: string + type: object + PDFRequest: + properties: + Data: + items: + $ref: "#/definitions/NewPDF" + type: array + Meta: + $ref: "#/definitions/RequestMeta" + type: object + RequestMeta: + properties: + ExternalAccount: + description: Account Number of the Reseller or OEM + type: string + required: + - ExternalAccount + type: object + ResponseMeta: + properties: + Contact: + description: Microservice Contact Info + type: string + Copyright: + description: Copyright Info + type: string + License: + description: License Information and Restrictions + type: string + OperationID: + description: Operation ID + type: string + RequestIP: + description: Request IP Address + type: string + RequestType: + description: Request Type + type: string + RequestURL: + description: Request URL + type: string + ServerInfo: + description: Data Server Info + type: string + ServerResponseTime: + description: Data Server Response Time (ms) + type: string + ServerTimestamp: + description: Backend Server Timestamp + type: string + ExternalAccount: + description: Account Number used for recording transactions + type: string + type: object