Bläddra i källkod

openapi

master
Florian Eisenmenger 2 år sedan
förälder
incheckning
b2f3aa2e8c
14 ändrade filer med 52 tillägg och 25 borttagningar
  1. +1
    -1
      matsen-tool/openapi.json
  2. +39
    -12
      matsen-tool/openapi.yaml
  3. +1
    -1
      matsen-tool/src/app/core/api/v1/model/comment.ts
  4. +1
    -1
      matsen-tool/src/app/core/api/v1/model/commentJsonhal.ts
  5. +1
    -1
      matsen-tool/src/app/core/api/v1/model/commentJsonld.ts
  6. +1
    -1
      matsen-tool/src/app/core/api/v1/model/post.ts
  7. +1
    -1
      matsen-tool/src/app/core/api/v1/model/postJsonhal.ts
  8. +1
    -1
      matsen-tool/src/app/core/api/v1/model/postJsonld.ts
  9. +1
    -1
      matsen-tool/src/app/core/api/v1/model/sale.ts
  10. +1
    -1
      matsen-tool/src/app/core/api/v1/model/saleJsonhal.ts
  11. +1
    -1
      matsen-tool/src/app/core/api/v1/model/saleJsonld.ts
  12. +1
    -1
      matsen-tool/src/app/core/api/v1/model/taskNote.ts
  13. +1
    -1
      matsen-tool/src/app/core/api/v1/model/taskNoteJsonhal.ts
  14. +1
    -1
      matsen-tool/src/app/core/api/v1/model/taskNoteJsonld.ts

+ 1
- 1
matsen-tool/openapi.json
Filskillnaden har hållits tillbaka eftersom den är för stor
Visa fil


+ 39
- 12
matsen-tool/openapi.yaml Visa fil

@@ -2677,7 +2677,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -2721,7 +2723,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -2779,7 +2783,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -2828,6 +2834,7 @@ components:
type:
- string
- 'null'
format: date-time
image:
'owl:maxCardinality': 1
type:
@@ -2905,6 +2912,7 @@ components:
type:
- string
- 'null'
format: date-time
image:
'owl:maxCardinality': 1
type:
@@ -2996,6 +3004,7 @@ components:
type:
- string
- 'null'
format: date-time
image:
'owl:maxCardinality': 1
type:
@@ -3371,7 +3380,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -3492,7 +3503,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -3620,7 +3633,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -3827,7 +3842,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -3902,7 +3919,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -3991,7 +4010,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -4467,7 +4488,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -4511,7 +4534,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:
@@ -4569,7 +4594,9 @@ components:
owner:
readOnly: true
'owl:maxCardinality': 1
type: string
type:
- string
- 'null'
format: iri-reference
example: 'https://example.com/'
ownerName:


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/comment.ts Visa fil

@@ -16,7 +16,7 @@
*/
export interface Comment {
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
post?: string | null;
readonly createdAt?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/commentJsonhal.ts Visa fil

@@ -18,7 +18,7 @@ import { CommentJsonhalLinks } from './commentJsonhalLinks';
export interface CommentJsonhal {
_links?: CommentJsonhalLinks;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
post?: string | null;
readonly createdAt?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/commentJsonld.ts Visa fil

@@ -20,7 +20,7 @@ export interface CommentJsonld {
readonly id?: string;
readonly type?: string;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
post?: string | null;
readonly createdAt?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/post.ts Visa fil

@@ -18,7 +18,7 @@ import { Comment } from './comment';
export interface Post {
headline: string | null;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
contact?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/postJsonhal.ts Visa fil

@@ -20,7 +20,7 @@ export interface PostJsonhal {
_links?: CommentJsonhalLinks;
headline: string | null;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
contact?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/postJsonld.ts Visa fil

@@ -22,7 +22,7 @@ export interface PostJsonld {
readonly type?: string;
headline: string | null;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
contact?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/sale.ts Visa fil

@@ -15,7 +15,7 @@
*
*/
export interface Sale {
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
readonly partnerName?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/saleJsonhal.ts Visa fil

@@ -17,7 +17,7 @@ import { CommentJsonhalLinks } from './commentJsonhalLinks';
*/
export interface SaleJsonhal {
_links?: CommentJsonhalLinks;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
readonly partnerName?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/saleJsonld.ts Visa fil

@@ -19,7 +19,7 @@ export interface SaleJsonld {
context?: CommentJsonldContext;
readonly id?: string;
readonly type?: string;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
partner?: string | null;
readonly partnerName?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/taskNote.ts Visa fil

@@ -16,7 +16,7 @@
*/
export interface TaskNote {
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
task?: string | null;
readonly createdAt?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/taskNoteJsonhal.ts Visa fil

@@ -18,7 +18,7 @@ import { CommentJsonhalLinks } from './commentJsonhalLinks';
export interface TaskNoteJsonhal {
_links?: CommentJsonhalLinks;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
task?: string | null;
readonly createdAt?: string | null;


+ 1
- 1
matsen-tool/src/app/core/api/v1/model/taskNoteJsonld.ts Visa fil

@@ -20,7 +20,7 @@ export interface TaskNoteJsonld {
readonly id?: string;
readonly type?: string;
message: string | null;
readonly owner?: string;
readonly owner?: string | null;
readonly ownerName?: string | null;
task?: string | null;
readonly createdAt?: string | null;


Laddar…
Avbryt
Spara