Skip to content

Commit

Permalink
Synch metamodel.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Oct 18, 2024
1 parent cb3ed5c commit e640a1d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions typescript-generator/src/metamodel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ export class Property {
description?: string
docUrl?: string
docId?: string
extDocId?: string
extDocUrl?: string
serverDefault?: boolean | string | number | string[] | number[]
deprecation?: Deprecation
availability?: Availabilities
Expand Down Expand Up @@ -158,6 +160,8 @@ export abstract class BaseType {
/** Link to public documentation */
docUrl?: string
docId?: string
extDocId?: string
extDocUrl?: string
deprecation?: Deprecation
/** If this endpoint has a quirk that needs special attention, give a short explanation about it */
esQuirk?: string
Expand Down Expand Up @@ -406,11 +410,11 @@ export class Endpoint {
description: string
docUrl: string
docId?: string
extDocId?: string
extDocUrl?: string
deprecation?: Deprecation
availability: Availabilities
docTag?: string
extDocId?: string
extDocUrl?: string
/**
* If the request value is `null` it means that there is not yet a
* request type definition for this endpoint.
Expand Down

0 comments on commit e640a1d

Please sign in to comment.