├── .github └── workflows │ ├── prod.yml │ └── staging.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── babel.config.js ├── blog ├── 2019-05-28-first-blog-post.md ├── 2019-05-29-long-blog-post.md ├── 2021-08-01-mdx-blog-post.mdx ├── 2021-08-26-welcome │ ├── docusaurus-plushie-banner.jpeg │ └── index.md ├── authors.yml └── tags.yml ├── docs ├── auth │ ├── _category_.json │ ├── api-keys │ │ ├── _category_.json │ │ ├── delete-api-key.md │ │ ├── generate-api-key.md │ │ └── list-all-api-keys.md │ └── how-auth-works.md ├── intro.md ├── organization │ ├── _category_.json │ ├── get-organization-users.md │ └── get-organization.md ├── prices │ ├── _category_.json │ ├── create-product-price.md │ ├── delete-price.md │ ├── get-price.md │ ├── get-product-current-prices.md │ ├── list-all-product-prices.md │ └── update-price.md ├── products │ ├── _category_.json │ ├── create-product.md │ ├── delete-product-image.md │ ├── delete-product.md │ ├── delete-selected-products.md │ ├── get-product-images.md │ ├── get-single-product.md │ ├── list-all-products.md │ └── update-product.md ├── sales │ ├── _category_.json │ └── create-sale.md ├── stocks │ ├── _category_.json │ ├── create-stock.md │ ├── delete-selected-stocks.md │ ├── delete-stock.md │ ├── get-stock.md │ ├── list-product-stocks.md │ └── update-stock.md ├── tutorials │ ├── _category_.json │ └── authentication.md └── user │ ├── _category_.json │ ├── activate-user.md │ ├── delete-user.md │ ├── get-user-invitation.md │ ├── get-user.md │ ├── passwd-change-with-token.md │ ├── recover-passwd.md │ ├── resend-user-verification.md │ ├── reset-passwd.md │ ├── update-user-password.md │ ├── update-user-profile.md │ ├── update-user.md │ ├── upload-user-image.md │ └── verify-user-with-token.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src ├── components │ └── HomepageFeatures │ │ ├── index.tsx │ │ └── styles.module.css ├── css │ └── custom.css └── pages │ ├── index.module.css │ ├── index.tsx │ └── markdown-page.md ├── static ├── .nojekyll └── img │ ├── apis │ ├── create_keys_step1.png │ ├── create_keys_step2.png │ ├── create_keys_step3.png │ └── create_keys_step4.png │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg └── tsconfig.json /.github/workflows/prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/.github/workflows/prod.yml -------------------------------------------------------------------------------- /.github/workflows/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/.github/workflows/staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["securepassword"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/blog/tags.yml -------------------------------------------------------------------------------- /docs/auth/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/_category_.json -------------------------------------------------------------------------------- /docs/auth/api-keys/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/api-keys/_category_.json -------------------------------------------------------------------------------- /docs/auth/api-keys/delete-api-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/api-keys/delete-api-key.md -------------------------------------------------------------------------------- /docs/auth/api-keys/generate-api-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/api-keys/generate-api-key.md -------------------------------------------------------------------------------- /docs/auth/api-keys/list-all-api-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/api-keys/list-all-api-keys.md -------------------------------------------------------------------------------- /docs/auth/how-auth-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/auth/how-auth-works.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/organization/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/organization/_category_.json -------------------------------------------------------------------------------- /docs/organization/get-organization-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/organization/get-organization-users.md -------------------------------------------------------------------------------- /docs/organization/get-organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/organization/get-organization.md -------------------------------------------------------------------------------- /docs/prices/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/_category_.json -------------------------------------------------------------------------------- /docs/prices/create-product-price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/create-product-price.md -------------------------------------------------------------------------------- /docs/prices/delete-price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/delete-price.md -------------------------------------------------------------------------------- /docs/prices/get-price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/get-price.md -------------------------------------------------------------------------------- /docs/prices/get-product-current-prices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/get-product-current-prices.md -------------------------------------------------------------------------------- /docs/prices/list-all-product-prices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/list-all-product-prices.md -------------------------------------------------------------------------------- /docs/prices/update-price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/prices/update-price.md -------------------------------------------------------------------------------- /docs/products/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/_category_.json -------------------------------------------------------------------------------- /docs/products/create-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/create-product.md -------------------------------------------------------------------------------- /docs/products/delete-product-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/delete-product-image.md -------------------------------------------------------------------------------- /docs/products/delete-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/delete-product.md -------------------------------------------------------------------------------- /docs/products/delete-selected-products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/delete-selected-products.md -------------------------------------------------------------------------------- /docs/products/get-product-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/get-product-images.md -------------------------------------------------------------------------------- /docs/products/get-single-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/get-single-product.md -------------------------------------------------------------------------------- /docs/products/list-all-products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/list-all-products.md -------------------------------------------------------------------------------- /docs/products/update-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/products/update-product.md -------------------------------------------------------------------------------- /docs/sales/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/sales/_category_.json -------------------------------------------------------------------------------- /docs/sales/create-sale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/sales/create-sale.md -------------------------------------------------------------------------------- /docs/stocks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/_category_.json -------------------------------------------------------------------------------- /docs/stocks/create-stock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/create-stock.md -------------------------------------------------------------------------------- /docs/stocks/delete-selected-stocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/delete-selected-stocks.md -------------------------------------------------------------------------------- /docs/stocks/delete-stock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/delete-stock.md -------------------------------------------------------------------------------- /docs/stocks/get-stock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/get-stock.md -------------------------------------------------------------------------------- /docs/stocks/list-product-stocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/list-product-stocks.md -------------------------------------------------------------------------------- /docs/stocks/update-stock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/stocks/update-stock.md -------------------------------------------------------------------------------- /docs/tutorials/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/tutorials/_category_.json -------------------------------------------------------------------------------- /docs/tutorials/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/tutorials/authentication.md -------------------------------------------------------------------------------- /docs/user/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/_category_.json -------------------------------------------------------------------------------- /docs/user/activate-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/activate-user.md -------------------------------------------------------------------------------- /docs/user/delete-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/delete-user.md -------------------------------------------------------------------------------- /docs/user/get-user-invitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/get-user-invitation.md -------------------------------------------------------------------------------- /docs/user/get-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/get-user.md -------------------------------------------------------------------------------- /docs/user/passwd-change-with-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/passwd-change-with-token.md -------------------------------------------------------------------------------- /docs/user/recover-passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/recover-passwd.md -------------------------------------------------------------------------------- /docs/user/resend-user-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/resend-user-verification.md -------------------------------------------------------------------------------- /docs/user/reset-passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/reset-passwd.md -------------------------------------------------------------------------------- /docs/user/update-user-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/update-user-password.md -------------------------------------------------------------------------------- /docs/user/update-user-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/update-user-profile.md -------------------------------------------------------------------------------- /docs/user/update-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/update-user.md -------------------------------------------------------------------------------- /docs/user/upload-user-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/upload-user-image.md -------------------------------------------------------------------------------- /docs/user/verify-user-with-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docs/user/verify-user-with-token.md -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/sidebars.ts -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/apis/create_keys_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/apis/create_keys_step1.png -------------------------------------------------------------------------------- /static/img/apis/create_keys_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/apis/create_keys_step2.png -------------------------------------------------------------------------------- /static/img/apis/create_keys_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/apis/create_keys_step3.png -------------------------------------------------------------------------------- /static/img/apis/create_keys_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/apis/create_keys_step4.png -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hnginc/docs/HEAD/tsconfig.json --------------------------------------------------------------------------------