You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: endpoints/Endpoint.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -235,7 +235,7 @@ export class Endpoint {
235
235
* Shows whether the server has indicated that a specific HTTP method is currently allowed.
236
236
* Uses cached data from last response.
237
237
* @param method The HTTP methods (e.g. GET, POST, ...) to check.
238
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
238
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
Copy file name to clipboardExpand all lines: endpoints/generic/ElementEndpoint.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ export class ElementEndpoint<TEntity> extends ETagEndpointBase {
53
53
/**
54
54
* Shows whether the server has indicated that {@link set} is currently allowed.
55
55
* Uses cached data from last response.
56
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
56
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -79,7 +79,7 @@ export class ElementEndpoint<TEntity> extends ETagEndpointBase {
79
79
/**
80
80
* Shows whether the server has indicated that {@link merge} is currently allowed.
81
81
* Uses cached data from last response.
82
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
82
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -135,7 +135,7 @@ export class ElementEndpoint<TEntity> extends ETagEndpointBase {
135
135
/**
136
136
* Shows whether the server has indicated that {@link delete} is currently allowed.
137
137
* Uses cached data from last response.
138
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
138
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
Copy file name to clipboardExpand all lines: endpoints/generic/GenericCollectionEndpoint.ts
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -43,16 +43,25 @@ export class GenericCollectionEndpoint<TEntity, TElementEndpoint extends Element
43
43
/**
44
44
* Shows whether the server has indicated that {@link readAll} is currently allowed.
45
45
* Uses cached data from last response.
46
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
46
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
* Shows whether the server has indicated that {@link create} is currently allowed.
54
63
* Uses cached data from last response.
55
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
64
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -82,7 +91,7 @@ export class GenericCollectionEndpoint<TEntity, TElementEndpoint extends Element
82
91
/**
83
92
* Shows whether the server has indicated that {@link createAll} is currently allowed.
84
93
* Uses cached data from last response.
85
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
94
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -104,7 +113,7 @@ export class GenericCollectionEndpoint<TEntity, TElementEndpoint extends Element
104
113
/**
105
114
* Shows whether the server has indicated that {@link setAll} is currently allowed.
106
115
* Uses cached data from last response.
107
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
116
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
Copy file name to clipboardExpand all lines: endpoints/raw/BlobEndpoint.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ export class BlobEndpoint extends Endpoint {
23
23
/**
24
24
* Shows whether the server has indicated that {@link download} is currently allowed.
25
25
* Uses cached data from last response.
26
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
26
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -43,7 +43,7 @@ export class BlobEndpoint extends Endpoint {
43
43
/**
44
44
* Shows whether the server has indicated that {@link upload} is currently allowed.
45
45
* Uses cached data from last response.
46
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
46
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
@@ -60,7 +60,7 @@ export class BlobEndpoint extends Endpoint {
60
60
/**
61
61
* Shows whether the server has indicated that {@link delete} is currently allowed.
62
62
* Uses cached data from last response.
63
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
63
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
Copy file name to clipboardExpand all lines: endpoints/rpc/RpcEndpointBase.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ export class RpcEndpointBase extends Endpoint {
26
26
/**
27
27
* Shows whether the server has indicated that the invoke method is currently allowed.
28
28
* Uses cached data from last response.
29
-
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` If no request has been sent yet or the server did not specify allowed methods.
29
+
* @returns `true` if the method is allowed, `false` if the method is not allowed, `undefined` if no request has been sent yet or the server did not specify allowed methods.
0 commit comments