@appsemble/utils 0.28.8 → 0.28.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.28.8/config/assets/logo.svg) Appsemble Utilities
1
+ # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.28.9/config/assets/logo.svg) Appsemble Utilities
2
2
 
3
3
  > Internal utility functions used across multiple Appsemble projects.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@appsemble/utils)](https://www.npmjs.com/package/@appsemble/utils)
6
- [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.28.8/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.28.8)
6
+ [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.28.9/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.28.9)
7
7
  [![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io)
8
8
 
9
9
  ## Table of Contents
@@ -26,5 +26,5 @@ not guaranteed.
26
26
 
27
27
  ## License
28
28
 
29
- [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.28.8/LICENSE.md) ©
29
+ [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.28.9/LICENSE.md) ©
30
30
  [Appsemble](https://appsemble.com)
@@ -5,7 +5,6 @@ export * from './$team.js';
5
5
  export * from './$top.js';
6
6
  export * from './$skip.js';
7
7
  export * from './appId.js';
8
- export * from './appPath.js';
9
8
  export * from './appOAuth2SecretId.js';
10
9
  export * from './appSamlSecretId.js';
11
10
  export * from './assetId.js';
@@ -5,7 +5,6 @@ export * from './$team.js';
5
5
  export * from './$top.js';
6
6
  export * from './$skip.js';
7
7
  export * from './appId.js';
8
- export * from './appPath.js';
9
8
  export * from './appOAuth2SecretId.js';
10
9
  export * from './appSamlSecretId.js';
11
10
  export * from './assetId.js';
package/api/paths/apps.js CHANGED
@@ -142,29 +142,6 @@ export const paths = {
142
142
  security: [{ studio: [] }, {}],
143
143
  },
144
144
  },
145
- '/api/apps/path/{appPath}': {
146
- parameters: [{ $ref: '#/components/parameters/appPath' }],
147
- get: {
148
- tags: ['app', 'app-path'],
149
- parameters: [
150
- {
151
- name: 'language',
152
- schema: { type: 'string' },
153
- description: 'The language to include the translations of, if available',
154
- in: 'query',
155
- },
156
- ],
157
- description: 'Get an app by app-path',
158
- operationId: 'getAppByPath',
159
- responses: {
160
- 200: {
161
- description: 'The app that matches the given app path.',
162
- $ref: '#/components/responses/app',
163
- },
164
- },
165
- security: [{ studio: [] }, {}],
166
- },
167
- },
168
145
  '/api/apps/{appId}': {
169
146
  parameters: [{ $ref: '#/components/parameters/appId' }],
170
147
  get: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appsemble/utils",
3
- "version": "0.28.8",
3
+ "version": "0.28.9",
4
4
  "description": "Utility functions used in Appsemble internally",
5
5
  "keywords": [
6
6
  "app",
@@ -37,7 +37,7 @@
37
37
  "test": "vitest"
38
38
  },
39
39
  "dependencies": {
40
- "@appsemble/types": "0.28.8",
40
+ "@appsemble/types": "0.28.9",
41
41
  "axios": "^1.0.0",
42
42
  "cron-parser": "^4.0.0",
43
43
  "date-fns": "^2.0.0",
@@ -1,2 +0,0 @@
1
- import { type OpenAPIV3 } from 'openapi-types';
2
- export declare const appPath: OpenAPIV3.ParameterObject;
@@ -1,8 +0,0 @@
1
- export const appPath = {
2
- name: 'appPath',
3
- in: 'path',
4
- description: 'The app-path of the app on which to perform an operation',
5
- required: true,
6
- schema: { $ref: '#/components/schemas/App/properties/path' },
7
- };
8
- //# sourceMappingURL=appPath.js.map