coreum-js 2.3.1
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 +18 -0
- package/dist/main/client/index.d.ts +48 -0
- package/dist/main/client/index.js +242 -0
- package/dist/main/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/main/coreum/asset/ft/v1/event.js +377 -0
- package/dist/main/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/main/coreum/asset/ft/v1/genesis.js +197 -0
- package/dist/main/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/ft/v1/params.js +69 -0
- package/dist/main/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/main/coreum/asset/ft/v1/query.js +892 -0
- package/dist/main/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/main/coreum/asset/ft/v1/token.js +361 -0
- package/dist/main/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/main/coreum/asset/ft/v1/tx.js +760 -0
- package/dist/main/coreum/asset/index.d.ts +3 -0
- package/dist/main/coreum/asset/index.js +26 -0
- package/dist/main/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/main/coreum/asset/nft/v1/event.js +490 -0
- package/dist/main/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/main/coreum/asset/nft/v1/genesis.js +362 -0
- package/dist/main/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/main/coreum/asset/nft/v1/nft.js +361 -0
- package/dist/main/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/nft/v1/params.js +69 -0
- package/dist/main/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/main/coreum/asset/nft/v1/query.js +627 -0
- package/dist/main/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/main/coreum/asset/nft/v1/tx.js +806 -0
- package/dist/main/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/main/coreum/asset/nft/v1/types.js +108 -0
- package/dist/main/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/main/coreum/customparams/v1/genesis.js +70 -0
- package/dist/main/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/main/coreum/customparams/v1/params.js +67 -0
- package/dist/main/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/main/coreum/customparams/v1/query.js +119 -0
- package/dist/main/coreum/extensions/ft.d.ts +13 -0
- package/dist/main/coreum/extensions/ft.js +36 -0
- package/dist/main/coreum/extensions/nft.d.ts +11 -0
- package/dist/main/coreum/extensions/nft.js +30 -0
- package/dist/main/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/main/coreum/extensions/nftbeta.js +36 -0
- package/dist/main/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/main/coreum/feemodel/v1/genesis.js +87 -0
- package/dist/main/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/main/coreum/feemodel/v1/params.js +201 -0
- package/dist/main/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/main/coreum/feemodel/v1/query.js +214 -0
- package/dist/main/coreum/google/api/annotations.d.ts +1 -0
- package/dist/main/coreum/google/api/annotations.js +6 -0
- package/dist/main/coreum/google/api/http.d.ts +2953 -0
- package/dist/main/coreum/google/api/http.js +329 -0
- package/dist/main/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/main/coreum/google/protobuf/any.js +122 -0
- package/dist/main/coreum/index.d.ts +291 -0
- package/dist/main/coreum/index.js +116 -0
- package/dist/main/coreum/nft/index.d.ts +2 -0
- package/dist/main/coreum/nft/index.js +9 -0
- package/dist/main/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/main/coreum/nft/v1beta1/event.js +255 -0
- package/dist/main/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/main/coreum/nft/v1beta1/genesis.js +160 -0
- package/dist/main/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/main/coreum/nft/v1beta1/nft.js +258 -0
- package/dist/main/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/main/coreum/nft/v1beta1/query.js +872 -0
- package/dist/main/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/main/coreum/nft/v1beta1/tx.js +155 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.js +224 -0
- package/dist/main/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/main/cosmos/base/v1beta1/coin.js +242 -0
- package/dist/main/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/main/cosmos/msg/v1/msg.js +6 -0
- package/dist/main/index.d.ts +5 -0
- package/dist/main/index.js +22 -0
- package/dist/main/services/cosmostation.d.ts +4 -0
- package/dist/main/services/cosmostation.js +47 -0
- package/dist/main/services/index.d.ts +2 -0
- package/dist/main/services/index.js +19 -0
- package/dist/main/services/keplr.d.ts +2 -0
- package/dist/main/services/keplr.js +119 -0
- package/dist/main/signers/dcent.d.ts +1 -0
- package/dist/main/signers/dcent.js +41 -0
- package/dist/main/signers/index.d.ts +3 -0
- package/dist/main/signers/index.js +20 -0
- package/dist/main/signers/offline.d.ts +4 -0
- package/dist/main/signers/offline.js +11 -0
- package/dist/main/signers/signer.d.ts +6 -0
- package/dist/main/signers/signer.js +17 -0
- package/dist/main/types/core.d.ts +24 -0
- package/dist/main/types/core.js +18 -0
- package/dist/main/types/coreum.d.ts +74 -0
- package/dist/main/types/coreum.js +80 -0
- package/dist/main/types/index.d.ts +3 -0
- package/dist/main/types/index.js +20 -0
- package/dist/main/types/signing.d.ts +20 -0
- package/dist/main/types/signing.js +17 -0
- package/dist/main/utils/calculations.d.ts +6 -0
- package/dist/main/utils/calculations.js +41 -0
- package/dist/main/utils/event.d.ts +5 -0
- package/dist/main/utils/event.js +22 -0
- package/dist/main/utils/index.d.ts +3 -0
- package/dist/main/utils/index.js +20 -0
- package/dist/main/utils/nft.d.ts +2 -0
- package/dist/main/utils/nft.js +9 -0
- package/dist/main/utils/wallet.d.ts +5 -0
- package/dist/main/utils/wallet.js +37 -0
- package/dist/module/client/index.d.ts +48 -0
- package/dist/module/client/index.js +241 -0
- package/dist/module/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/module/coreum/asset/ft/v1/event.js +368 -0
- package/dist/module/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/module/coreum/asset/ft/v1/genesis.js +189 -0
- package/dist/module/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/ft/v1/params.js +63 -0
- package/dist/module/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/module/coreum/asset/ft/v1/query.js +878 -0
- package/dist/module/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/module/coreum/asset/ft/v1/token.js +351 -0
- package/dist/module/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/module/coreum/asset/ft/v1/tx.js +747 -0
- package/dist/module/coreum/asset/index.d.ts +3 -0
- package/dist/module/coreum/asset/index.js +23 -0
- package/dist/module/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/module/coreum/asset/nft/v1/event.js +479 -0
- package/dist/module/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/module/coreum/asset/nft/v1/genesis.js +352 -0
- package/dist/module/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/module/coreum/asset/nft/v1/nft.js +351 -0
- package/dist/module/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/nft/v1/params.js +63 -0
- package/dist/module/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/module/coreum/asset/nft/v1/query.js +615 -0
- package/dist/module/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/module/coreum/asset/nft/v1/tx.js +794 -0
- package/dist/module/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/module/coreum/asset/nft/v1/types.js +101 -0
- package/dist/module/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/module/coreum/customparams/v1/genesis.js +64 -0
- package/dist/module/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/module/coreum/customparams/v1/params.js +60 -0
- package/dist/module/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/module/coreum/customparams/v1/query.js +114 -0
- package/dist/module/coreum/extensions/ft.d.ts +13 -0
- package/dist/module/coreum/extensions/ft.js +32 -0
- package/dist/module/coreum/extensions/nft.d.ts +11 -0
- package/dist/module/coreum/extensions/nft.js +26 -0
- package/dist/module/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/module/coreum/extensions/nftbeta.js +32 -0
- package/dist/module/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/module/coreum/feemodel/v1/genesis.js +81 -0
- package/dist/module/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/module/coreum/feemodel/v1/params.js +194 -0
- package/dist/module/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/module/coreum/feemodel/v1/query.js +209 -0
- package/dist/module/coreum/google/api/annotations.d.ts +1 -0
- package/dist/module/coreum/google/api/annotations.js +3 -0
- package/dist/module/coreum/google/api/http.d.ts +2953 -0
- package/dist/module/coreum/google/api/http.js +320 -0
- package/dist/module/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/module/coreum/google/protobuf/any.js +115 -0
- package/dist/module/coreum/index.d.ts +291 -0
- package/dist/module/coreum/index.js +113 -0
- package/dist/module/coreum/nft/index.d.ts +2 -0
- package/dist/module/coreum/nft/index.js +6 -0
- package/dist/module/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/module/coreum/nft/v1beta1/event.js +246 -0
- package/dist/module/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/module/coreum/nft/v1beta1/genesis.js +152 -0
- package/dist/module/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/module/coreum/nft/v1beta1/nft.js +250 -0
- package/dist/module/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/module/coreum/nft/v1beta1/query.js +858 -0
- package/dist/module/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/module/coreum/nft/v1beta1/tx.js +149 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.js +216 -0
- package/dist/module/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/module/cosmos/base/v1beta1/coin.js +232 -0
- package/dist/module/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/module/cosmos/msg/v1/msg.js +3 -0
- package/dist/module/index.d.ts +5 -0
- package/dist/module/index.js +6 -0
- package/dist/module/services/cosmostation.d.ts +4 -0
- package/dist/module/services/cosmostation.js +42 -0
- package/dist/module/services/index.d.ts +2 -0
- package/dist/module/services/index.js +3 -0
- package/dist/module/services/keplr.d.ts +2 -0
- package/dist/module/services/keplr.js +115 -0
- package/dist/module/signers/dcent.d.ts +1 -0
- package/dist/module/signers/dcent.js +31 -0
- package/dist/module/signers/index.d.ts +3 -0
- package/dist/module/signers/index.js +4 -0
- package/dist/module/signers/offline.d.ts +4 -0
- package/dist/module/signers/offline.js +7 -0
- package/dist/module/signers/signer.d.ts +6 -0
- package/dist/module/signers/signer.js +11 -0
- package/dist/module/types/core.d.ts +24 -0
- package/dist/module/types/core.js +15 -0
- package/dist/module/types/coreum.d.ts +74 -0
- package/dist/module/types/coreum.js +77 -0
- package/dist/module/types/index.d.ts +3 -0
- package/dist/module/types/index.js +4 -0
- package/dist/module/types/signing.d.ts +20 -0
- package/dist/module/types/signing.js +14 -0
- package/dist/module/utils/calculations.d.ts +6 -0
- package/dist/module/utils/calculations.js +29 -0
- package/dist/module/utils/event.d.ts +5 -0
- package/dist/module/utils/event.js +18 -0
- package/dist/module/utils/index.d.ts +3 -0
- package/dist/module/utils/index.js +4 -0
- package/dist/module/utils/nft.d.ts +2 -0
- package/dist/module/utils/nft.js +5 -0
- package/dist/module/utils/wallet.d.ts +5 -0
- package/dist/module/utils/wallet.js +31 -0
- package/package.json +55 -0
|
@@ -0,0 +1,2953 @@
|
|
|
1
|
+
import Long from "long";
|
|
2
|
+
import _m0 from "protobufjs/minimal";
|
|
3
|
+
export declare const protobufPackage = "google.api";
|
|
4
|
+
/**
|
|
5
|
+
* Defines the HTTP configuration for an API service. It contains a list of
|
|
6
|
+
* [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method
|
|
7
|
+
* to one or more HTTP REST API methods.
|
|
8
|
+
*/
|
|
9
|
+
export interface Http {
|
|
10
|
+
/**
|
|
11
|
+
* A list of HTTP configuration rules that apply to individual API methods.
|
|
12
|
+
*
|
|
13
|
+
* **NOTE:** All service configuration rules follow "last one wins" order.
|
|
14
|
+
*/
|
|
15
|
+
rules: HttpRule[];
|
|
16
|
+
/**
|
|
17
|
+
* When set to true, URL path parmeters will be fully URI-decoded except in
|
|
18
|
+
* cases of single segment matches in reserved expansion, where "%2F" will be
|
|
19
|
+
* left encoded.
|
|
20
|
+
*
|
|
21
|
+
* The default behavior is to not decode RFC 6570 reserved characters in multi
|
|
22
|
+
* segment matches.
|
|
23
|
+
*/
|
|
24
|
+
fullyDecodeReservedExpansion: boolean;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* `HttpRule` defines the mapping of an RPC method to one or more HTTP
|
|
28
|
+
* REST API methods. The mapping specifies how different portions of the RPC
|
|
29
|
+
* request message are mapped to URL path, URL query parameters, and
|
|
30
|
+
* HTTP request body. The mapping is typically specified as an
|
|
31
|
+
* `google.api.http` annotation on the RPC method,
|
|
32
|
+
* see "google/api/annotations.proto" for details.
|
|
33
|
+
*
|
|
34
|
+
* The mapping consists of a field specifying the path template and
|
|
35
|
+
* method kind. The path template can refer to fields in the request
|
|
36
|
+
* message, as in the example below which describes a REST GET
|
|
37
|
+
* operation on a resource collection of messages:
|
|
38
|
+
*
|
|
39
|
+
* service Messaging {
|
|
40
|
+
* rpc GetMessage(GetMessageRequest) returns (Message) {
|
|
41
|
+
* option (google.api.http).get = "/v1/messages/{message_id}/{sub.subfield}";
|
|
42
|
+
* }
|
|
43
|
+
* }
|
|
44
|
+
* message GetMessageRequest {
|
|
45
|
+
* message SubMessage {
|
|
46
|
+
* string subfield = 1;
|
|
47
|
+
* }
|
|
48
|
+
* string message_id = 1; // mapped to the URL
|
|
49
|
+
* SubMessage sub = 2; // `sub.subfield` is url-mapped
|
|
50
|
+
* }
|
|
51
|
+
* message Message {
|
|
52
|
+
* string text = 1; // content of the resource
|
|
53
|
+
* }
|
|
54
|
+
*
|
|
55
|
+
* The same http annotation can alternatively be expressed inside the
|
|
56
|
+
* `GRPC API Configuration` YAML file.
|
|
57
|
+
*
|
|
58
|
+
* http:
|
|
59
|
+
* rules:
|
|
60
|
+
* - selector: <proto_package_name>.Messaging.GetMessage
|
|
61
|
+
* get: /v1/messages/{message_id}/{sub.subfield}
|
|
62
|
+
*
|
|
63
|
+
* This definition enables an automatic, bidrectional mapping of HTTP
|
|
64
|
+
* JSON to RPC. Example:
|
|
65
|
+
*
|
|
66
|
+
* HTTP | RPC
|
|
67
|
+
* -----|-----
|
|
68
|
+
* `GET /v1/messages/123456/foo` | `GetMessage(message_id: "123456" sub: SubMessage(subfield: "foo"))`
|
|
69
|
+
*
|
|
70
|
+
* In general, not only fields but also field paths can be referenced
|
|
71
|
+
* from a path pattern. Fields mapped to the path pattern cannot be
|
|
72
|
+
* repeated and must have a primitive (non-message) type.
|
|
73
|
+
*
|
|
74
|
+
* Any fields in the request message which are not bound by the path
|
|
75
|
+
* pattern automatically become (optional) HTTP query
|
|
76
|
+
* parameters. Assume the following definition of the request message:
|
|
77
|
+
*
|
|
78
|
+
* service Messaging {
|
|
79
|
+
* rpc GetMessage(GetMessageRequest) returns (Message) {
|
|
80
|
+
* option (google.api.http).get = "/v1/messages/{message_id}";
|
|
81
|
+
* }
|
|
82
|
+
* }
|
|
83
|
+
* message GetMessageRequest {
|
|
84
|
+
* message SubMessage {
|
|
85
|
+
* string subfield = 1;
|
|
86
|
+
* }
|
|
87
|
+
* string message_id = 1; // mapped to the URL
|
|
88
|
+
* int64 revision = 2; // becomes a parameter
|
|
89
|
+
* SubMessage sub = 3; // `sub.subfield` becomes a parameter
|
|
90
|
+
* }
|
|
91
|
+
*
|
|
92
|
+
* This enables a HTTP JSON to RPC mapping as below:
|
|
93
|
+
*
|
|
94
|
+
* HTTP | RPC
|
|
95
|
+
* -----|-----
|
|
96
|
+
* `GET /v1/messages/123456?revision=2&sub.subfield=foo` | `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))`
|
|
97
|
+
*
|
|
98
|
+
* Note that fields which are mapped to HTTP parameters must have a
|
|
99
|
+
* primitive type or a repeated primitive type. Message types are not
|
|
100
|
+
* allowed. In the case of a repeated type, the parameter can be
|
|
101
|
+
* repeated in the URL, as in `...?param=A¶m=B`.
|
|
102
|
+
*
|
|
103
|
+
* For HTTP method kinds which allow a request body, the `body` field
|
|
104
|
+
* specifies the mapping. Consider a REST update method on the
|
|
105
|
+
* message resource collection:
|
|
106
|
+
*
|
|
107
|
+
* service Messaging {
|
|
108
|
+
* rpc UpdateMessage(UpdateMessageRequest) returns (Message) {
|
|
109
|
+
* option (google.api.http) = {
|
|
110
|
+
* put: "/v1/messages/{message_id}"
|
|
111
|
+
* body: "message"
|
|
112
|
+
* };
|
|
113
|
+
* }
|
|
114
|
+
* }
|
|
115
|
+
* message UpdateMessageRequest {
|
|
116
|
+
* string message_id = 1; // mapped to the URL
|
|
117
|
+
* Message message = 2; // mapped to the body
|
|
118
|
+
* }
|
|
119
|
+
*
|
|
120
|
+
* The following HTTP JSON to RPC mapping is enabled, where the
|
|
121
|
+
* representation of the JSON in the request body is determined by
|
|
122
|
+
* protos JSON encoding:
|
|
123
|
+
*
|
|
124
|
+
* HTTP | RPC
|
|
125
|
+
* -----|-----
|
|
126
|
+
* `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" message { text: "Hi!" })`
|
|
127
|
+
*
|
|
128
|
+
* The special name `*` can be used in the body mapping to define that
|
|
129
|
+
* every field not bound by the path template should be mapped to the
|
|
130
|
+
* request body. This enables the following alternative definition of
|
|
131
|
+
* the update method:
|
|
132
|
+
*
|
|
133
|
+
* service Messaging {
|
|
134
|
+
* rpc UpdateMessage(Message) returns (Message) {
|
|
135
|
+
* option (google.api.http) = {
|
|
136
|
+
* put: "/v1/messages/{message_id}"
|
|
137
|
+
* body: "*"
|
|
138
|
+
* };
|
|
139
|
+
* }
|
|
140
|
+
* }
|
|
141
|
+
* message Message {
|
|
142
|
+
* string message_id = 1;
|
|
143
|
+
* string text = 2;
|
|
144
|
+
* }
|
|
145
|
+
*
|
|
146
|
+
* The following HTTP JSON to RPC mapping is enabled:
|
|
147
|
+
*
|
|
148
|
+
* HTTP | RPC
|
|
149
|
+
* -----|-----
|
|
150
|
+
* `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" text: "Hi!")`
|
|
151
|
+
*
|
|
152
|
+
* Note that when using `*` in the body mapping, it is not possible to
|
|
153
|
+
* have HTTP parameters, as all fields not bound by the path end in
|
|
154
|
+
* the body. This makes this option more rarely used in practice of
|
|
155
|
+
* defining REST APIs. The common usage of `*` is in custom methods
|
|
156
|
+
* which don't use the URL at all for transferring data.
|
|
157
|
+
*
|
|
158
|
+
* It is possible to define multiple HTTP methods for one RPC by using
|
|
159
|
+
* the `additional_bindings` option. Example:
|
|
160
|
+
*
|
|
161
|
+
* service Messaging {
|
|
162
|
+
* rpc GetMessage(GetMessageRequest) returns (Message) {
|
|
163
|
+
* option (google.api.http) = {
|
|
164
|
+
* get: "/v1/messages/{message_id}"
|
|
165
|
+
* additional_bindings {
|
|
166
|
+
* get: "/v1/users/{user_id}/messages/{message_id}"
|
|
167
|
+
* }
|
|
168
|
+
* };
|
|
169
|
+
* }
|
|
170
|
+
* }
|
|
171
|
+
* message GetMessageRequest {
|
|
172
|
+
* string message_id = 1;
|
|
173
|
+
* string user_id = 2;
|
|
174
|
+
* }
|
|
175
|
+
*
|
|
176
|
+
* This enables the following two alternative HTTP JSON to RPC
|
|
177
|
+
* mappings:
|
|
178
|
+
*
|
|
179
|
+
* HTTP | RPC
|
|
180
|
+
* -----|-----
|
|
181
|
+
* `GET /v1/messages/123456` | `GetMessage(message_id: "123456")`
|
|
182
|
+
* `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id: "123456")`
|
|
183
|
+
*
|
|
184
|
+
* # Rules for HTTP mapping
|
|
185
|
+
*
|
|
186
|
+
* The rules for mapping HTTP path, query parameters, and body fields
|
|
187
|
+
* to the request message are as follows:
|
|
188
|
+
*
|
|
189
|
+
* 1. The `body` field specifies either `*` or a field path, or is
|
|
190
|
+
* omitted. If omitted, it indicates there is no HTTP request body.
|
|
191
|
+
* 2. Leaf fields (recursive expansion of nested messages in the
|
|
192
|
+
* request) can be classified into three types:
|
|
193
|
+
* (a) Matched in the URL template.
|
|
194
|
+
* (b) Covered by body (if body is `*`, everything except (a) fields;
|
|
195
|
+
* else everything under the body field)
|
|
196
|
+
* (c) All other fields.
|
|
197
|
+
* 3. URL query parameters found in the HTTP request are mapped to (c) fields.
|
|
198
|
+
* 4. Any body sent with an HTTP request can contain only (b) fields.
|
|
199
|
+
*
|
|
200
|
+
* The syntax of the path template is as follows:
|
|
201
|
+
*
|
|
202
|
+
* Template = "/" Segments [ Verb ] ;
|
|
203
|
+
* Segments = Segment { "/" Segment } ;
|
|
204
|
+
* Segment = "*" | "**" | LITERAL | Variable ;
|
|
205
|
+
* Variable = "{" FieldPath [ "=" Segments ] "}" ;
|
|
206
|
+
* FieldPath = IDENT { "." IDENT } ;
|
|
207
|
+
* Verb = ":" LITERAL ;
|
|
208
|
+
*
|
|
209
|
+
* The syntax `*` matches a single path segment. The syntax `**` matches zero
|
|
210
|
+
* or more path segments, which must be the last part of the path except the
|
|
211
|
+
* `Verb`. The syntax `LITERAL` matches literal text in the path.
|
|
212
|
+
*
|
|
213
|
+
* The syntax `Variable` matches part of the URL path as specified by its
|
|
214
|
+
* template. A variable template must not contain other variables. If a variable
|
|
215
|
+
* matches a single path segment, its template may be omitted, e.g. `{var}`
|
|
216
|
+
* is equivalent to `{var=*}`.
|
|
217
|
+
*
|
|
218
|
+
* If a variable contains exactly one path segment, such as `"{var}"` or
|
|
219
|
+
* `"{var=*}"`, when such a variable is expanded into a URL path, all characters
|
|
220
|
+
* except `[-_.~0-9a-zA-Z]` are percent-encoded. Such variables show up in the
|
|
221
|
+
* Discovery Document as `{var}`.
|
|
222
|
+
*
|
|
223
|
+
* If a variable contains one or more path segments, such as `"{var=foo/*}"`
|
|
224
|
+
* or `"{var=**}"`, when such a variable is expanded into a URL path, all
|
|
225
|
+
* characters except `[-_.~/0-9a-zA-Z]` are percent-encoded. Such variables
|
|
226
|
+
* show up in the Discovery Document as `{+var}`.
|
|
227
|
+
*
|
|
228
|
+
* NOTE: While the single segment variable matches the semantics of
|
|
229
|
+
* [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
|
|
230
|
+
* Simple String Expansion, the multi segment variable **does not** match
|
|
231
|
+
* RFC 6570 Reserved Expansion. The reason is that the Reserved Expansion
|
|
232
|
+
* does not expand special characters like `?` and `#`, which would lead
|
|
233
|
+
* to invalid URLs.
|
|
234
|
+
*
|
|
235
|
+
* NOTE: the field paths in variables and in the `body` must not refer to
|
|
236
|
+
* repeated fields or map fields.
|
|
237
|
+
*/
|
|
238
|
+
export interface HttpRule {
|
|
239
|
+
/**
|
|
240
|
+
* Selects methods to which this rule applies.
|
|
241
|
+
*
|
|
242
|
+
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
|
|
243
|
+
*/
|
|
244
|
+
selector: string;
|
|
245
|
+
/** Used for listing and getting information about resources. */
|
|
246
|
+
get?: string | undefined;
|
|
247
|
+
/** Used for updating a resource. */
|
|
248
|
+
put?: string | undefined;
|
|
249
|
+
/** Used for creating a resource. */
|
|
250
|
+
post?: string | undefined;
|
|
251
|
+
/** Used for deleting a resource. */
|
|
252
|
+
delete?: string | undefined;
|
|
253
|
+
/** Used for updating a resource. */
|
|
254
|
+
patch?: string | undefined;
|
|
255
|
+
/**
|
|
256
|
+
* The custom pattern is used for specifying an HTTP method that is not
|
|
257
|
+
* included in the `pattern` field, such as HEAD, or "*" to leave the
|
|
258
|
+
* HTTP method unspecified for this rule. The wild-card rule is useful
|
|
259
|
+
* for services that provide content to Web (HTML) clients.
|
|
260
|
+
*/
|
|
261
|
+
custom?: CustomHttpPattern | undefined;
|
|
262
|
+
/**
|
|
263
|
+
* The name of the request field whose value is mapped to the HTTP body, or
|
|
264
|
+
* `*` for mapping all fields not captured by the path pattern to the HTTP
|
|
265
|
+
* body. NOTE: the referred field must not be a repeated field and must be
|
|
266
|
+
* present at the top-level of request message type.
|
|
267
|
+
*/
|
|
268
|
+
body: string;
|
|
269
|
+
/**
|
|
270
|
+
* Optional. The name of the response field whose value is mapped to the HTTP
|
|
271
|
+
* body of response. Other response fields are ignored. When
|
|
272
|
+
* not set, the response message will be used as HTTP body of response.
|
|
273
|
+
*/
|
|
274
|
+
responseBody: string;
|
|
275
|
+
/**
|
|
276
|
+
* Additional HTTP bindings for the selector. Nested bindings must
|
|
277
|
+
* not contain an `additional_bindings` field themselves (that is,
|
|
278
|
+
* the nesting may only be one level deep).
|
|
279
|
+
*/
|
|
280
|
+
additionalBindings: HttpRule[];
|
|
281
|
+
}
|
|
282
|
+
/** A custom pattern is used for defining custom HTTP verb. */
|
|
283
|
+
export interface CustomHttpPattern {
|
|
284
|
+
/** The name of this custom HTTP verb. */
|
|
285
|
+
kind: string;
|
|
286
|
+
/** The path matched by this custom verb. */
|
|
287
|
+
path: string;
|
|
288
|
+
}
|
|
289
|
+
export declare const Http: {
|
|
290
|
+
encode(message: Http, writer?: _m0.Writer): _m0.Writer;
|
|
291
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Http;
|
|
292
|
+
fromJSON(object: any): Http;
|
|
293
|
+
toJSON(message: Http): unknown;
|
|
294
|
+
create<I extends {
|
|
295
|
+
rules?: {
|
|
296
|
+
selector?: string;
|
|
297
|
+
get?: string | undefined;
|
|
298
|
+
put?: string | undefined;
|
|
299
|
+
post?: string | undefined;
|
|
300
|
+
delete?: string | undefined;
|
|
301
|
+
patch?: string | undefined;
|
|
302
|
+
custom?: {
|
|
303
|
+
kind?: string;
|
|
304
|
+
path?: string;
|
|
305
|
+
};
|
|
306
|
+
body?: string;
|
|
307
|
+
responseBody?: string;
|
|
308
|
+
additionalBindings?: any[];
|
|
309
|
+
}[];
|
|
310
|
+
fullyDecodeReservedExpansion?: boolean;
|
|
311
|
+
} & {
|
|
312
|
+
rules?: {
|
|
313
|
+
selector?: string;
|
|
314
|
+
get?: string | undefined;
|
|
315
|
+
put?: string | undefined;
|
|
316
|
+
post?: string | undefined;
|
|
317
|
+
delete?: string | undefined;
|
|
318
|
+
patch?: string | undefined;
|
|
319
|
+
custom?: {
|
|
320
|
+
kind?: string;
|
|
321
|
+
path?: string;
|
|
322
|
+
};
|
|
323
|
+
body?: string;
|
|
324
|
+
responseBody?: string;
|
|
325
|
+
additionalBindings?: any[];
|
|
326
|
+
}[] & ({
|
|
327
|
+
selector?: string;
|
|
328
|
+
get?: string | undefined;
|
|
329
|
+
put?: string | undefined;
|
|
330
|
+
post?: string | undefined;
|
|
331
|
+
delete?: string | undefined;
|
|
332
|
+
patch?: string | undefined;
|
|
333
|
+
custom?: {
|
|
334
|
+
kind?: string;
|
|
335
|
+
path?: string;
|
|
336
|
+
};
|
|
337
|
+
body?: string;
|
|
338
|
+
responseBody?: string;
|
|
339
|
+
additionalBindings?: any[];
|
|
340
|
+
} & {
|
|
341
|
+
selector?: string;
|
|
342
|
+
get?: string | undefined;
|
|
343
|
+
put?: string | undefined;
|
|
344
|
+
post?: string | undefined;
|
|
345
|
+
delete?: string | undefined;
|
|
346
|
+
patch?: string | undefined;
|
|
347
|
+
custom?: {
|
|
348
|
+
kind?: string;
|
|
349
|
+
path?: string;
|
|
350
|
+
} & {
|
|
351
|
+
kind?: string;
|
|
352
|
+
path?: string;
|
|
353
|
+
} & { [K in Exclude<keyof I["rules"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
354
|
+
body?: string;
|
|
355
|
+
responseBody?: string;
|
|
356
|
+
additionalBindings?: {
|
|
357
|
+
selector?: string;
|
|
358
|
+
get?: string | undefined;
|
|
359
|
+
put?: string | undefined;
|
|
360
|
+
post?: string | undefined;
|
|
361
|
+
delete?: string | undefined;
|
|
362
|
+
patch?: string | undefined;
|
|
363
|
+
custom?: {
|
|
364
|
+
kind?: string;
|
|
365
|
+
path?: string;
|
|
366
|
+
};
|
|
367
|
+
body?: string;
|
|
368
|
+
responseBody?: string;
|
|
369
|
+
additionalBindings?: any[];
|
|
370
|
+
}[] & ({
|
|
371
|
+
selector?: string;
|
|
372
|
+
get?: string | undefined;
|
|
373
|
+
put?: string | undefined;
|
|
374
|
+
post?: string | undefined;
|
|
375
|
+
delete?: string | undefined;
|
|
376
|
+
patch?: string | undefined;
|
|
377
|
+
custom?: {
|
|
378
|
+
kind?: string;
|
|
379
|
+
path?: string;
|
|
380
|
+
};
|
|
381
|
+
body?: string;
|
|
382
|
+
responseBody?: string;
|
|
383
|
+
additionalBindings?: any[];
|
|
384
|
+
} & {
|
|
385
|
+
selector?: string;
|
|
386
|
+
get?: string | undefined;
|
|
387
|
+
put?: string | undefined;
|
|
388
|
+
post?: string | undefined;
|
|
389
|
+
delete?: string | undefined;
|
|
390
|
+
patch?: string | undefined;
|
|
391
|
+
custom?: {
|
|
392
|
+
kind?: string;
|
|
393
|
+
path?: string;
|
|
394
|
+
} & {
|
|
395
|
+
kind?: string;
|
|
396
|
+
path?: string;
|
|
397
|
+
} & { [K_1 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
398
|
+
body?: string;
|
|
399
|
+
responseBody?: string;
|
|
400
|
+
additionalBindings?: {
|
|
401
|
+
selector?: string;
|
|
402
|
+
get?: string | undefined;
|
|
403
|
+
put?: string | undefined;
|
|
404
|
+
post?: string | undefined;
|
|
405
|
+
delete?: string | undefined;
|
|
406
|
+
patch?: string | undefined;
|
|
407
|
+
custom?: {
|
|
408
|
+
kind?: string;
|
|
409
|
+
path?: string;
|
|
410
|
+
};
|
|
411
|
+
body?: string;
|
|
412
|
+
responseBody?: string;
|
|
413
|
+
additionalBindings?: any[];
|
|
414
|
+
}[] & ({
|
|
415
|
+
selector?: string;
|
|
416
|
+
get?: string | undefined;
|
|
417
|
+
put?: string | undefined;
|
|
418
|
+
post?: string | undefined;
|
|
419
|
+
delete?: string | undefined;
|
|
420
|
+
patch?: string | undefined;
|
|
421
|
+
custom?: {
|
|
422
|
+
kind?: string;
|
|
423
|
+
path?: string;
|
|
424
|
+
};
|
|
425
|
+
body?: string;
|
|
426
|
+
responseBody?: string;
|
|
427
|
+
additionalBindings?: any[];
|
|
428
|
+
} & {
|
|
429
|
+
selector?: string;
|
|
430
|
+
get?: string | undefined;
|
|
431
|
+
put?: string | undefined;
|
|
432
|
+
post?: string | undefined;
|
|
433
|
+
delete?: string | undefined;
|
|
434
|
+
patch?: string | undefined;
|
|
435
|
+
custom?: {
|
|
436
|
+
kind?: string;
|
|
437
|
+
path?: string;
|
|
438
|
+
} & {
|
|
439
|
+
kind?: string;
|
|
440
|
+
path?: string;
|
|
441
|
+
} & { [K_2 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
442
|
+
body?: string;
|
|
443
|
+
responseBody?: string;
|
|
444
|
+
additionalBindings?: {
|
|
445
|
+
selector?: string;
|
|
446
|
+
get?: string | undefined;
|
|
447
|
+
put?: string | undefined;
|
|
448
|
+
post?: string | undefined;
|
|
449
|
+
delete?: string | undefined;
|
|
450
|
+
patch?: string | undefined;
|
|
451
|
+
custom?: {
|
|
452
|
+
kind?: string;
|
|
453
|
+
path?: string;
|
|
454
|
+
};
|
|
455
|
+
body?: string;
|
|
456
|
+
responseBody?: string;
|
|
457
|
+
additionalBindings?: any[];
|
|
458
|
+
}[] & ({
|
|
459
|
+
selector?: string;
|
|
460
|
+
get?: string | undefined;
|
|
461
|
+
put?: string | undefined;
|
|
462
|
+
post?: string | undefined;
|
|
463
|
+
delete?: string | undefined;
|
|
464
|
+
patch?: string | undefined;
|
|
465
|
+
custom?: {
|
|
466
|
+
kind?: string;
|
|
467
|
+
path?: string;
|
|
468
|
+
};
|
|
469
|
+
body?: string;
|
|
470
|
+
responseBody?: string;
|
|
471
|
+
additionalBindings?: any[];
|
|
472
|
+
} & {
|
|
473
|
+
selector?: string;
|
|
474
|
+
get?: string | undefined;
|
|
475
|
+
put?: string | undefined;
|
|
476
|
+
post?: string | undefined;
|
|
477
|
+
delete?: string | undefined;
|
|
478
|
+
patch?: string | undefined;
|
|
479
|
+
custom?: {
|
|
480
|
+
kind?: string;
|
|
481
|
+
path?: string;
|
|
482
|
+
} & {
|
|
483
|
+
kind?: string;
|
|
484
|
+
path?: string;
|
|
485
|
+
} & { [K_3 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
486
|
+
body?: string;
|
|
487
|
+
responseBody?: string;
|
|
488
|
+
additionalBindings?: {
|
|
489
|
+
selector?: string;
|
|
490
|
+
get?: string | undefined;
|
|
491
|
+
put?: string | undefined;
|
|
492
|
+
post?: string | undefined;
|
|
493
|
+
delete?: string | undefined;
|
|
494
|
+
patch?: string | undefined;
|
|
495
|
+
custom?: {
|
|
496
|
+
kind?: string;
|
|
497
|
+
path?: string;
|
|
498
|
+
};
|
|
499
|
+
body?: string;
|
|
500
|
+
responseBody?: string;
|
|
501
|
+
additionalBindings?: any[];
|
|
502
|
+
}[] & ({
|
|
503
|
+
selector?: string;
|
|
504
|
+
get?: string | undefined;
|
|
505
|
+
put?: string | undefined;
|
|
506
|
+
post?: string | undefined;
|
|
507
|
+
delete?: string | undefined;
|
|
508
|
+
patch?: string | undefined;
|
|
509
|
+
custom?: {
|
|
510
|
+
kind?: string;
|
|
511
|
+
path?: string;
|
|
512
|
+
};
|
|
513
|
+
body?: string;
|
|
514
|
+
responseBody?: string;
|
|
515
|
+
additionalBindings?: any[];
|
|
516
|
+
} & {
|
|
517
|
+
selector?: string;
|
|
518
|
+
get?: string | undefined;
|
|
519
|
+
put?: string | undefined;
|
|
520
|
+
post?: string | undefined;
|
|
521
|
+
delete?: string | undefined;
|
|
522
|
+
patch?: string | undefined;
|
|
523
|
+
custom?: {
|
|
524
|
+
kind?: string;
|
|
525
|
+
path?: string;
|
|
526
|
+
} & {
|
|
527
|
+
kind?: string;
|
|
528
|
+
path?: string;
|
|
529
|
+
} & { [K_4 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
530
|
+
body?: string;
|
|
531
|
+
responseBody?: string;
|
|
532
|
+
additionalBindings?: {
|
|
533
|
+
selector?: string;
|
|
534
|
+
get?: string | undefined;
|
|
535
|
+
put?: string | undefined;
|
|
536
|
+
post?: string | undefined;
|
|
537
|
+
delete?: string | undefined;
|
|
538
|
+
patch?: string | undefined;
|
|
539
|
+
custom?: {
|
|
540
|
+
kind?: string;
|
|
541
|
+
path?: string;
|
|
542
|
+
};
|
|
543
|
+
body?: string;
|
|
544
|
+
responseBody?: string;
|
|
545
|
+
additionalBindings?: any[];
|
|
546
|
+
}[] & ({
|
|
547
|
+
selector?: string;
|
|
548
|
+
get?: string | undefined;
|
|
549
|
+
put?: string | undefined;
|
|
550
|
+
post?: string | undefined;
|
|
551
|
+
delete?: string | undefined;
|
|
552
|
+
patch?: string | undefined;
|
|
553
|
+
custom?: {
|
|
554
|
+
kind?: string;
|
|
555
|
+
path?: string;
|
|
556
|
+
};
|
|
557
|
+
body?: string;
|
|
558
|
+
responseBody?: string;
|
|
559
|
+
additionalBindings?: any[];
|
|
560
|
+
} & {
|
|
561
|
+
selector?: string;
|
|
562
|
+
get?: string | undefined;
|
|
563
|
+
put?: string | undefined;
|
|
564
|
+
post?: string | undefined;
|
|
565
|
+
delete?: string | undefined;
|
|
566
|
+
patch?: string | undefined;
|
|
567
|
+
custom?: {
|
|
568
|
+
kind?: string;
|
|
569
|
+
path?: string;
|
|
570
|
+
} & {
|
|
571
|
+
kind?: string;
|
|
572
|
+
path?: string;
|
|
573
|
+
} & { [K_5 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
574
|
+
body?: string;
|
|
575
|
+
responseBody?: string;
|
|
576
|
+
additionalBindings?: {
|
|
577
|
+
selector?: string;
|
|
578
|
+
get?: string | undefined;
|
|
579
|
+
put?: string | undefined;
|
|
580
|
+
post?: string | undefined;
|
|
581
|
+
delete?: string | undefined;
|
|
582
|
+
patch?: string | undefined;
|
|
583
|
+
custom?: {
|
|
584
|
+
kind?: string;
|
|
585
|
+
path?: string;
|
|
586
|
+
};
|
|
587
|
+
body?: string;
|
|
588
|
+
responseBody?: string;
|
|
589
|
+
additionalBindings?: any[];
|
|
590
|
+
}[] & ({
|
|
591
|
+
selector?: string;
|
|
592
|
+
get?: string | undefined;
|
|
593
|
+
put?: string | undefined;
|
|
594
|
+
post?: string | undefined;
|
|
595
|
+
delete?: string | undefined;
|
|
596
|
+
patch?: string | undefined;
|
|
597
|
+
custom?: {
|
|
598
|
+
kind?: string;
|
|
599
|
+
path?: string;
|
|
600
|
+
};
|
|
601
|
+
body?: string;
|
|
602
|
+
responseBody?: string;
|
|
603
|
+
additionalBindings?: any[];
|
|
604
|
+
} & {
|
|
605
|
+
selector?: string;
|
|
606
|
+
get?: string | undefined;
|
|
607
|
+
put?: string | undefined;
|
|
608
|
+
post?: string | undefined;
|
|
609
|
+
delete?: string | undefined;
|
|
610
|
+
patch?: string | undefined;
|
|
611
|
+
custom?: {
|
|
612
|
+
kind?: string;
|
|
613
|
+
path?: string;
|
|
614
|
+
} & {
|
|
615
|
+
kind?: string;
|
|
616
|
+
path?: string;
|
|
617
|
+
} & { [K_6 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
618
|
+
body?: string;
|
|
619
|
+
responseBody?: string;
|
|
620
|
+
additionalBindings?: {
|
|
621
|
+
selector?: string;
|
|
622
|
+
get?: string | undefined;
|
|
623
|
+
put?: string | undefined;
|
|
624
|
+
post?: string | undefined;
|
|
625
|
+
delete?: string | undefined;
|
|
626
|
+
patch?: string | undefined;
|
|
627
|
+
custom?: {
|
|
628
|
+
kind?: string;
|
|
629
|
+
path?: string;
|
|
630
|
+
};
|
|
631
|
+
body?: string;
|
|
632
|
+
responseBody?: string;
|
|
633
|
+
additionalBindings?: any[];
|
|
634
|
+
}[] & ({
|
|
635
|
+
selector?: string;
|
|
636
|
+
get?: string | undefined;
|
|
637
|
+
put?: string | undefined;
|
|
638
|
+
post?: string | undefined;
|
|
639
|
+
delete?: string | undefined;
|
|
640
|
+
patch?: string | undefined;
|
|
641
|
+
custom?: {
|
|
642
|
+
kind?: string;
|
|
643
|
+
path?: string;
|
|
644
|
+
};
|
|
645
|
+
body?: string;
|
|
646
|
+
responseBody?: string;
|
|
647
|
+
additionalBindings?: any[];
|
|
648
|
+
} & {
|
|
649
|
+
selector?: string;
|
|
650
|
+
get?: string | undefined;
|
|
651
|
+
put?: string | undefined;
|
|
652
|
+
post?: string | undefined;
|
|
653
|
+
delete?: string | undefined;
|
|
654
|
+
patch?: string | undefined;
|
|
655
|
+
custom?: {
|
|
656
|
+
kind?: string;
|
|
657
|
+
path?: string;
|
|
658
|
+
} & {
|
|
659
|
+
kind?: string;
|
|
660
|
+
path?: string;
|
|
661
|
+
} & { [K_7 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
662
|
+
body?: string;
|
|
663
|
+
responseBody?: string;
|
|
664
|
+
additionalBindings?: {
|
|
665
|
+
selector?: string;
|
|
666
|
+
get?: string | undefined;
|
|
667
|
+
put?: string | undefined;
|
|
668
|
+
post?: string | undefined;
|
|
669
|
+
delete?: string | undefined;
|
|
670
|
+
patch?: string | undefined;
|
|
671
|
+
custom?: {
|
|
672
|
+
kind?: string;
|
|
673
|
+
path?: string;
|
|
674
|
+
};
|
|
675
|
+
body?: string;
|
|
676
|
+
responseBody?: string;
|
|
677
|
+
additionalBindings?: any[];
|
|
678
|
+
}[] & ({
|
|
679
|
+
selector?: string;
|
|
680
|
+
get?: string | undefined;
|
|
681
|
+
put?: string | undefined;
|
|
682
|
+
post?: string | undefined;
|
|
683
|
+
delete?: string | undefined;
|
|
684
|
+
patch?: string | undefined;
|
|
685
|
+
custom?: {
|
|
686
|
+
kind?: string;
|
|
687
|
+
path?: string;
|
|
688
|
+
};
|
|
689
|
+
body?: string;
|
|
690
|
+
responseBody?: string;
|
|
691
|
+
additionalBindings?: any[];
|
|
692
|
+
} & {
|
|
693
|
+
selector?: string;
|
|
694
|
+
get?: string | undefined;
|
|
695
|
+
put?: string | undefined;
|
|
696
|
+
post?: string | undefined;
|
|
697
|
+
delete?: string | undefined;
|
|
698
|
+
patch?: string | undefined;
|
|
699
|
+
custom?: {
|
|
700
|
+
kind?: string;
|
|
701
|
+
path?: string;
|
|
702
|
+
} & {
|
|
703
|
+
kind?: string;
|
|
704
|
+
path?: string;
|
|
705
|
+
} & { [K_8 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
706
|
+
body?: string;
|
|
707
|
+
responseBody?: string;
|
|
708
|
+
additionalBindings?: {
|
|
709
|
+
selector?: string;
|
|
710
|
+
get?: string | undefined;
|
|
711
|
+
put?: string | undefined;
|
|
712
|
+
post?: string | undefined;
|
|
713
|
+
delete?: string | undefined;
|
|
714
|
+
patch?: string | undefined;
|
|
715
|
+
custom?: {
|
|
716
|
+
kind?: string;
|
|
717
|
+
path?: string;
|
|
718
|
+
};
|
|
719
|
+
body?: string;
|
|
720
|
+
responseBody?: string;
|
|
721
|
+
additionalBindings?: any[];
|
|
722
|
+
}[] & ({
|
|
723
|
+
selector?: string;
|
|
724
|
+
get?: string | undefined;
|
|
725
|
+
put?: string | undefined;
|
|
726
|
+
post?: string | undefined;
|
|
727
|
+
delete?: string | undefined;
|
|
728
|
+
patch?: string | undefined;
|
|
729
|
+
custom?: {
|
|
730
|
+
kind?: string;
|
|
731
|
+
path?: string;
|
|
732
|
+
};
|
|
733
|
+
body?: string;
|
|
734
|
+
responseBody?: string;
|
|
735
|
+
additionalBindings?: any[];
|
|
736
|
+
} & {
|
|
737
|
+
selector?: string;
|
|
738
|
+
get?: string | undefined;
|
|
739
|
+
put?: string | undefined;
|
|
740
|
+
post?: string | undefined;
|
|
741
|
+
delete?: string | undefined;
|
|
742
|
+
patch?: string | undefined;
|
|
743
|
+
custom?: {
|
|
744
|
+
kind?: string;
|
|
745
|
+
path?: string;
|
|
746
|
+
} & any & { [K_9 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
747
|
+
body?: string;
|
|
748
|
+
responseBody?: string;
|
|
749
|
+
additionalBindings?: {
|
|
750
|
+
selector?: string;
|
|
751
|
+
get?: string | undefined;
|
|
752
|
+
put?: string | undefined;
|
|
753
|
+
post?: string | undefined;
|
|
754
|
+
delete?: string | undefined;
|
|
755
|
+
patch?: string | undefined;
|
|
756
|
+
custom?: {
|
|
757
|
+
kind?: string;
|
|
758
|
+
path?: string;
|
|
759
|
+
};
|
|
760
|
+
body?: string;
|
|
761
|
+
responseBody?: string;
|
|
762
|
+
additionalBindings?: any[];
|
|
763
|
+
}[] & ({
|
|
764
|
+
selector?: string;
|
|
765
|
+
get?: string | undefined;
|
|
766
|
+
put?: string | undefined;
|
|
767
|
+
post?: string | undefined;
|
|
768
|
+
delete?: string | undefined;
|
|
769
|
+
patch?: string | undefined;
|
|
770
|
+
custom?: {
|
|
771
|
+
kind?: string;
|
|
772
|
+
path?: string;
|
|
773
|
+
};
|
|
774
|
+
body?: string;
|
|
775
|
+
responseBody?: string;
|
|
776
|
+
additionalBindings?: any[];
|
|
777
|
+
} & any & { [K_10 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_11 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
778
|
+
selector?: string;
|
|
779
|
+
get?: string | undefined;
|
|
780
|
+
put?: string | undefined;
|
|
781
|
+
post?: string | undefined;
|
|
782
|
+
delete?: string | undefined;
|
|
783
|
+
patch?: string | undefined;
|
|
784
|
+
custom?: {
|
|
785
|
+
kind?: string;
|
|
786
|
+
path?: string;
|
|
787
|
+
};
|
|
788
|
+
body?: string;
|
|
789
|
+
responseBody?: string;
|
|
790
|
+
additionalBindings?: any[];
|
|
791
|
+
}[]>]: never; };
|
|
792
|
+
} & { [K_12 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_13 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
793
|
+
selector?: string;
|
|
794
|
+
get?: string | undefined;
|
|
795
|
+
put?: string | undefined;
|
|
796
|
+
post?: string | undefined;
|
|
797
|
+
delete?: string | undefined;
|
|
798
|
+
patch?: string | undefined;
|
|
799
|
+
custom?: {
|
|
800
|
+
kind?: string;
|
|
801
|
+
path?: string;
|
|
802
|
+
};
|
|
803
|
+
body?: string;
|
|
804
|
+
responseBody?: string;
|
|
805
|
+
additionalBindings?: any[];
|
|
806
|
+
}[]>]: never; };
|
|
807
|
+
} & { [K_14 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_15 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
808
|
+
selector?: string;
|
|
809
|
+
get?: string | undefined;
|
|
810
|
+
put?: string | undefined;
|
|
811
|
+
post?: string | undefined;
|
|
812
|
+
delete?: string | undefined;
|
|
813
|
+
patch?: string | undefined;
|
|
814
|
+
custom?: {
|
|
815
|
+
kind?: string;
|
|
816
|
+
path?: string;
|
|
817
|
+
};
|
|
818
|
+
body?: string;
|
|
819
|
+
responseBody?: string;
|
|
820
|
+
additionalBindings?: any[];
|
|
821
|
+
}[]>]: never; };
|
|
822
|
+
} & { [K_16 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_17 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
823
|
+
selector?: string;
|
|
824
|
+
get?: string | undefined;
|
|
825
|
+
put?: string | undefined;
|
|
826
|
+
post?: string | undefined;
|
|
827
|
+
delete?: string | undefined;
|
|
828
|
+
patch?: string | undefined;
|
|
829
|
+
custom?: {
|
|
830
|
+
kind?: string;
|
|
831
|
+
path?: string;
|
|
832
|
+
};
|
|
833
|
+
body?: string;
|
|
834
|
+
responseBody?: string;
|
|
835
|
+
additionalBindings?: any[];
|
|
836
|
+
}[]>]: never; };
|
|
837
|
+
} & { [K_18 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_19 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
838
|
+
selector?: string;
|
|
839
|
+
get?: string | undefined;
|
|
840
|
+
put?: string | undefined;
|
|
841
|
+
post?: string | undefined;
|
|
842
|
+
delete?: string | undefined;
|
|
843
|
+
patch?: string | undefined;
|
|
844
|
+
custom?: {
|
|
845
|
+
kind?: string;
|
|
846
|
+
path?: string;
|
|
847
|
+
};
|
|
848
|
+
body?: string;
|
|
849
|
+
responseBody?: string;
|
|
850
|
+
additionalBindings?: any[];
|
|
851
|
+
}[]>]: never; };
|
|
852
|
+
} & { [K_20 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_21 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
853
|
+
selector?: string;
|
|
854
|
+
get?: string | undefined;
|
|
855
|
+
put?: string | undefined;
|
|
856
|
+
post?: string | undefined;
|
|
857
|
+
delete?: string | undefined;
|
|
858
|
+
patch?: string | undefined;
|
|
859
|
+
custom?: {
|
|
860
|
+
kind?: string;
|
|
861
|
+
path?: string;
|
|
862
|
+
};
|
|
863
|
+
body?: string;
|
|
864
|
+
responseBody?: string;
|
|
865
|
+
additionalBindings?: any[];
|
|
866
|
+
}[]>]: never; };
|
|
867
|
+
} & { [K_22 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_23 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
868
|
+
selector?: string;
|
|
869
|
+
get?: string | undefined;
|
|
870
|
+
put?: string | undefined;
|
|
871
|
+
post?: string | undefined;
|
|
872
|
+
delete?: string | undefined;
|
|
873
|
+
patch?: string | undefined;
|
|
874
|
+
custom?: {
|
|
875
|
+
kind?: string;
|
|
876
|
+
path?: string;
|
|
877
|
+
};
|
|
878
|
+
body?: string;
|
|
879
|
+
responseBody?: string;
|
|
880
|
+
additionalBindings?: any[];
|
|
881
|
+
}[]>]: never; };
|
|
882
|
+
} & { [K_24 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_25 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
883
|
+
selector?: string;
|
|
884
|
+
get?: string | undefined;
|
|
885
|
+
put?: string | undefined;
|
|
886
|
+
post?: string | undefined;
|
|
887
|
+
delete?: string | undefined;
|
|
888
|
+
patch?: string | undefined;
|
|
889
|
+
custom?: {
|
|
890
|
+
kind?: string;
|
|
891
|
+
path?: string;
|
|
892
|
+
};
|
|
893
|
+
body?: string;
|
|
894
|
+
responseBody?: string;
|
|
895
|
+
additionalBindings?: any[];
|
|
896
|
+
}[]>]: never; };
|
|
897
|
+
} & { [K_26 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_27 in Exclude<keyof I["rules"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
898
|
+
selector?: string;
|
|
899
|
+
get?: string | undefined;
|
|
900
|
+
put?: string | undefined;
|
|
901
|
+
post?: string | undefined;
|
|
902
|
+
delete?: string | undefined;
|
|
903
|
+
patch?: string | undefined;
|
|
904
|
+
custom?: {
|
|
905
|
+
kind?: string;
|
|
906
|
+
path?: string;
|
|
907
|
+
};
|
|
908
|
+
body?: string;
|
|
909
|
+
responseBody?: string;
|
|
910
|
+
additionalBindings?: any[];
|
|
911
|
+
}[]>]: never; };
|
|
912
|
+
} & { [K_28 in Exclude<keyof I["rules"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_29 in Exclude<keyof I["rules"][number]["additionalBindings"], keyof {
|
|
913
|
+
selector?: string;
|
|
914
|
+
get?: string | undefined;
|
|
915
|
+
put?: string | undefined;
|
|
916
|
+
post?: string | undefined;
|
|
917
|
+
delete?: string | undefined;
|
|
918
|
+
patch?: string | undefined;
|
|
919
|
+
custom?: {
|
|
920
|
+
kind?: string;
|
|
921
|
+
path?: string;
|
|
922
|
+
};
|
|
923
|
+
body?: string;
|
|
924
|
+
responseBody?: string;
|
|
925
|
+
additionalBindings?: any[];
|
|
926
|
+
}[]>]: never; };
|
|
927
|
+
} & { [K_30 in Exclude<keyof I["rules"][number], keyof HttpRule>]: never; })[] & { [K_31 in Exclude<keyof I["rules"], keyof {
|
|
928
|
+
selector?: string;
|
|
929
|
+
get?: string | undefined;
|
|
930
|
+
put?: string | undefined;
|
|
931
|
+
post?: string | undefined;
|
|
932
|
+
delete?: string | undefined;
|
|
933
|
+
patch?: string | undefined;
|
|
934
|
+
custom?: {
|
|
935
|
+
kind?: string;
|
|
936
|
+
path?: string;
|
|
937
|
+
};
|
|
938
|
+
body?: string;
|
|
939
|
+
responseBody?: string;
|
|
940
|
+
additionalBindings?: any[];
|
|
941
|
+
}[]>]: never; };
|
|
942
|
+
fullyDecodeReservedExpansion?: boolean;
|
|
943
|
+
} & { [K_32 in Exclude<keyof I, keyof Http>]: never; }>(base?: I): Http;
|
|
944
|
+
fromPartial<I_1 extends {
|
|
945
|
+
rules?: {
|
|
946
|
+
selector?: string;
|
|
947
|
+
get?: string | undefined;
|
|
948
|
+
put?: string | undefined;
|
|
949
|
+
post?: string | undefined;
|
|
950
|
+
delete?: string | undefined;
|
|
951
|
+
patch?: string | undefined;
|
|
952
|
+
custom?: {
|
|
953
|
+
kind?: string;
|
|
954
|
+
path?: string;
|
|
955
|
+
};
|
|
956
|
+
body?: string;
|
|
957
|
+
responseBody?: string;
|
|
958
|
+
additionalBindings?: any[];
|
|
959
|
+
}[];
|
|
960
|
+
fullyDecodeReservedExpansion?: boolean;
|
|
961
|
+
} & {
|
|
962
|
+
rules?: {
|
|
963
|
+
selector?: string;
|
|
964
|
+
get?: string | undefined;
|
|
965
|
+
put?: string | undefined;
|
|
966
|
+
post?: string | undefined;
|
|
967
|
+
delete?: string | undefined;
|
|
968
|
+
patch?: string | undefined;
|
|
969
|
+
custom?: {
|
|
970
|
+
kind?: string;
|
|
971
|
+
path?: string;
|
|
972
|
+
};
|
|
973
|
+
body?: string;
|
|
974
|
+
responseBody?: string;
|
|
975
|
+
additionalBindings?: any[];
|
|
976
|
+
}[] & ({
|
|
977
|
+
selector?: string;
|
|
978
|
+
get?: string | undefined;
|
|
979
|
+
put?: string | undefined;
|
|
980
|
+
post?: string | undefined;
|
|
981
|
+
delete?: string | undefined;
|
|
982
|
+
patch?: string | undefined;
|
|
983
|
+
custom?: {
|
|
984
|
+
kind?: string;
|
|
985
|
+
path?: string;
|
|
986
|
+
};
|
|
987
|
+
body?: string;
|
|
988
|
+
responseBody?: string;
|
|
989
|
+
additionalBindings?: any[];
|
|
990
|
+
} & {
|
|
991
|
+
selector?: string;
|
|
992
|
+
get?: string | undefined;
|
|
993
|
+
put?: string | undefined;
|
|
994
|
+
post?: string | undefined;
|
|
995
|
+
delete?: string | undefined;
|
|
996
|
+
patch?: string | undefined;
|
|
997
|
+
custom?: {
|
|
998
|
+
kind?: string;
|
|
999
|
+
path?: string;
|
|
1000
|
+
} & {
|
|
1001
|
+
kind?: string;
|
|
1002
|
+
path?: string;
|
|
1003
|
+
} & { [K_33 in Exclude<keyof I_1["rules"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1004
|
+
body?: string;
|
|
1005
|
+
responseBody?: string;
|
|
1006
|
+
additionalBindings?: {
|
|
1007
|
+
selector?: string;
|
|
1008
|
+
get?: string | undefined;
|
|
1009
|
+
put?: string | undefined;
|
|
1010
|
+
post?: string | undefined;
|
|
1011
|
+
delete?: string | undefined;
|
|
1012
|
+
patch?: string | undefined;
|
|
1013
|
+
custom?: {
|
|
1014
|
+
kind?: string;
|
|
1015
|
+
path?: string;
|
|
1016
|
+
};
|
|
1017
|
+
body?: string;
|
|
1018
|
+
responseBody?: string;
|
|
1019
|
+
additionalBindings?: any[];
|
|
1020
|
+
}[] & ({
|
|
1021
|
+
selector?: string;
|
|
1022
|
+
get?: string | undefined;
|
|
1023
|
+
put?: string | undefined;
|
|
1024
|
+
post?: string | undefined;
|
|
1025
|
+
delete?: string | undefined;
|
|
1026
|
+
patch?: string | undefined;
|
|
1027
|
+
custom?: {
|
|
1028
|
+
kind?: string;
|
|
1029
|
+
path?: string;
|
|
1030
|
+
};
|
|
1031
|
+
body?: string;
|
|
1032
|
+
responseBody?: string;
|
|
1033
|
+
additionalBindings?: any[];
|
|
1034
|
+
} & {
|
|
1035
|
+
selector?: string;
|
|
1036
|
+
get?: string | undefined;
|
|
1037
|
+
put?: string | undefined;
|
|
1038
|
+
post?: string | undefined;
|
|
1039
|
+
delete?: string | undefined;
|
|
1040
|
+
patch?: string | undefined;
|
|
1041
|
+
custom?: {
|
|
1042
|
+
kind?: string;
|
|
1043
|
+
path?: string;
|
|
1044
|
+
} & {
|
|
1045
|
+
kind?: string;
|
|
1046
|
+
path?: string;
|
|
1047
|
+
} & { [K_34 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1048
|
+
body?: string;
|
|
1049
|
+
responseBody?: string;
|
|
1050
|
+
additionalBindings?: {
|
|
1051
|
+
selector?: string;
|
|
1052
|
+
get?: string | undefined;
|
|
1053
|
+
put?: string | undefined;
|
|
1054
|
+
post?: string | undefined;
|
|
1055
|
+
delete?: string | undefined;
|
|
1056
|
+
patch?: string | undefined;
|
|
1057
|
+
custom?: {
|
|
1058
|
+
kind?: string;
|
|
1059
|
+
path?: string;
|
|
1060
|
+
};
|
|
1061
|
+
body?: string;
|
|
1062
|
+
responseBody?: string;
|
|
1063
|
+
additionalBindings?: any[];
|
|
1064
|
+
}[] & ({
|
|
1065
|
+
selector?: string;
|
|
1066
|
+
get?: string | undefined;
|
|
1067
|
+
put?: string | undefined;
|
|
1068
|
+
post?: string | undefined;
|
|
1069
|
+
delete?: string | undefined;
|
|
1070
|
+
patch?: string | undefined;
|
|
1071
|
+
custom?: {
|
|
1072
|
+
kind?: string;
|
|
1073
|
+
path?: string;
|
|
1074
|
+
};
|
|
1075
|
+
body?: string;
|
|
1076
|
+
responseBody?: string;
|
|
1077
|
+
additionalBindings?: any[];
|
|
1078
|
+
} & {
|
|
1079
|
+
selector?: string;
|
|
1080
|
+
get?: string | undefined;
|
|
1081
|
+
put?: string | undefined;
|
|
1082
|
+
post?: string | undefined;
|
|
1083
|
+
delete?: string | undefined;
|
|
1084
|
+
patch?: string | undefined;
|
|
1085
|
+
custom?: {
|
|
1086
|
+
kind?: string;
|
|
1087
|
+
path?: string;
|
|
1088
|
+
} & {
|
|
1089
|
+
kind?: string;
|
|
1090
|
+
path?: string;
|
|
1091
|
+
} & { [K_35 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1092
|
+
body?: string;
|
|
1093
|
+
responseBody?: string;
|
|
1094
|
+
additionalBindings?: {
|
|
1095
|
+
selector?: string;
|
|
1096
|
+
get?: string | undefined;
|
|
1097
|
+
put?: string | undefined;
|
|
1098
|
+
post?: string | undefined;
|
|
1099
|
+
delete?: string | undefined;
|
|
1100
|
+
patch?: string | undefined;
|
|
1101
|
+
custom?: {
|
|
1102
|
+
kind?: string;
|
|
1103
|
+
path?: string;
|
|
1104
|
+
};
|
|
1105
|
+
body?: string;
|
|
1106
|
+
responseBody?: string;
|
|
1107
|
+
additionalBindings?: any[];
|
|
1108
|
+
}[] & ({
|
|
1109
|
+
selector?: string;
|
|
1110
|
+
get?: string | undefined;
|
|
1111
|
+
put?: string | undefined;
|
|
1112
|
+
post?: string | undefined;
|
|
1113
|
+
delete?: string | undefined;
|
|
1114
|
+
patch?: string | undefined;
|
|
1115
|
+
custom?: {
|
|
1116
|
+
kind?: string;
|
|
1117
|
+
path?: string;
|
|
1118
|
+
};
|
|
1119
|
+
body?: string;
|
|
1120
|
+
responseBody?: string;
|
|
1121
|
+
additionalBindings?: any[];
|
|
1122
|
+
} & {
|
|
1123
|
+
selector?: string;
|
|
1124
|
+
get?: string | undefined;
|
|
1125
|
+
put?: string | undefined;
|
|
1126
|
+
post?: string | undefined;
|
|
1127
|
+
delete?: string | undefined;
|
|
1128
|
+
patch?: string | undefined;
|
|
1129
|
+
custom?: {
|
|
1130
|
+
kind?: string;
|
|
1131
|
+
path?: string;
|
|
1132
|
+
} & {
|
|
1133
|
+
kind?: string;
|
|
1134
|
+
path?: string;
|
|
1135
|
+
} & { [K_36 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1136
|
+
body?: string;
|
|
1137
|
+
responseBody?: string;
|
|
1138
|
+
additionalBindings?: {
|
|
1139
|
+
selector?: string;
|
|
1140
|
+
get?: string | undefined;
|
|
1141
|
+
put?: string | undefined;
|
|
1142
|
+
post?: string | undefined;
|
|
1143
|
+
delete?: string | undefined;
|
|
1144
|
+
patch?: string | undefined;
|
|
1145
|
+
custom?: {
|
|
1146
|
+
kind?: string;
|
|
1147
|
+
path?: string;
|
|
1148
|
+
};
|
|
1149
|
+
body?: string;
|
|
1150
|
+
responseBody?: string;
|
|
1151
|
+
additionalBindings?: any[];
|
|
1152
|
+
}[] & ({
|
|
1153
|
+
selector?: string;
|
|
1154
|
+
get?: string | undefined;
|
|
1155
|
+
put?: string | undefined;
|
|
1156
|
+
post?: string | undefined;
|
|
1157
|
+
delete?: string | undefined;
|
|
1158
|
+
patch?: string | undefined;
|
|
1159
|
+
custom?: {
|
|
1160
|
+
kind?: string;
|
|
1161
|
+
path?: string;
|
|
1162
|
+
};
|
|
1163
|
+
body?: string;
|
|
1164
|
+
responseBody?: string;
|
|
1165
|
+
additionalBindings?: any[];
|
|
1166
|
+
} & {
|
|
1167
|
+
selector?: string;
|
|
1168
|
+
get?: string | undefined;
|
|
1169
|
+
put?: string | undefined;
|
|
1170
|
+
post?: string | undefined;
|
|
1171
|
+
delete?: string | undefined;
|
|
1172
|
+
patch?: string | undefined;
|
|
1173
|
+
custom?: {
|
|
1174
|
+
kind?: string;
|
|
1175
|
+
path?: string;
|
|
1176
|
+
} & {
|
|
1177
|
+
kind?: string;
|
|
1178
|
+
path?: string;
|
|
1179
|
+
} & { [K_37 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1180
|
+
body?: string;
|
|
1181
|
+
responseBody?: string;
|
|
1182
|
+
additionalBindings?: {
|
|
1183
|
+
selector?: string;
|
|
1184
|
+
get?: string | undefined;
|
|
1185
|
+
put?: string | undefined;
|
|
1186
|
+
post?: string | undefined;
|
|
1187
|
+
delete?: string | undefined;
|
|
1188
|
+
patch?: string | undefined;
|
|
1189
|
+
custom?: {
|
|
1190
|
+
kind?: string;
|
|
1191
|
+
path?: string;
|
|
1192
|
+
};
|
|
1193
|
+
body?: string;
|
|
1194
|
+
responseBody?: string;
|
|
1195
|
+
additionalBindings?: any[];
|
|
1196
|
+
}[] & ({
|
|
1197
|
+
selector?: string;
|
|
1198
|
+
get?: string | undefined;
|
|
1199
|
+
put?: string | undefined;
|
|
1200
|
+
post?: string | undefined;
|
|
1201
|
+
delete?: string | undefined;
|
|
1202
|
+
patch?: string | undefined;
|
|
1203
|
+
custom?: {
|
|
1204
|
+
kind?: string;
|
|
1205
|
+
path?: string;
|
|
1206
|
+
};
|
|
1207
|
+
body?: string;
|
|
1208
|
+
responseBody?: string;
|
|
1209
|
+
additionalBindings?: any[];
|
|
1210
|
+
} & {
|
|
1211
|
+
selector?: string;
|
|
1212
|
+
get?: string | undefined;
|
|
1213
|
+
put?: string | undefined;
|
|
1214
|
+
post?: string | undefined;
|
|
1215
|
+
delete?: string | undefined;
|
|
1216
|
+
patch?: string | undefined;
|
|
1217
|
+
custom?: {
|
|
1218
|
+
kind?: string;
|
|
1219
|
+
path?: string;
|
|
1220
|
+
} & {
|
|
1221
|
+
kind?: string;
|
|
1222
|
+
path?: string;
|
|
1223
|
+
} & { [K_38 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1224
|
+
body?: string;
|
|
1225
|
+
responseBody?: string;
|
|
1226
|
+
additionalBindings?: {
|
|
1227
|
+
selector?: string;
|
|
1228
|
+
get?: string | undefined;
|
|
1229
|
+
put?: string | undefined;
|
|
1230
|
+
post?: string | undefined;
|
|
1231
|
+
delete?: string | undefined;
|
|
1232
|
+
patch?: string | undefined;
|
|
1233
|
+
custom?: {
|
|
1234
|
+
kind?: string;
|
|
1235
|
+
path?: string;
|
|
1236
|
+
};
|
|
1237
|
+
body?: string;
|
|
1238
|
+
responseBody?: string;
|
|
1239
|
+
additionalBindings?: any[];
|
|
1240
|
+
}[] & ({
|
|
1241
|
+
selector?: string;
|
|
1242
|
+
get?: string | undefined;
|
|
1243
|
+
put?: string | undefined;
|
|
1244
|
+
post?: string | undefined;
|
|
1245
|
+
delete?: string | undefined;
|
|
1246
|
+
patch?: string | undefined;
|
|
1247
|
+
custom?: {
|
|
1248
|
+
kind?: string;
|
|
1249
|
+
path?: string;
|
|
1250
|
+
};
|
|
1251
|
+
body?: string;
|
|
1252
|
+
responseBody?: string;
|
|
1253
|
+
additionalBindings?: any[];
|
|
1254
|
+
} & {
|
|
1255
|
+
selector?: string;
|
|
1256
|
+
get?: string | undefined;
|
|
1257
|
+
put?: string | undefined;
|
|
1258
|
+
post?: string | undefined;
|
|
1259
|
+
delete?: string | undefined;
|
|
1260
|
+
patch?: string | undefined;
|
|
1261
|
+
custom?: {
|
|
1262
|
+
kind?: string;
|
|
1263
|
+
path?: string;
|
|
1264
|
+
} & {
|
|
1265
|
+
kind?: string;
|
|
1266
|
+
path?: string;
|
|
1267
|
+
} & { [K_39 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1268
|
+
body?: string;
|
|
1269
|
+
responseBody?: string;
|
|
1270
|
+
additionalBindings?: {
|
|
1271
|
+
selector?: string;
|
|
1272
|
+
get?: string | undefined;
|
|
1273
|
+
put?: string | undefined;
|
|
1274
|
+
post?: string | undefined;
|
|
1275
|
+
delete?: string | undefined;
|
|
1276
|
+
patch?: string | undefined;
|
|
1277
|
+
custom?: {
|
|
1278
|
+
kind?: string;
|
|
1279
|
+
path?: string;
|
|
1280
|
+
};
|
|
1281
|
+
body?: string;
|
|
1282
|
+
responseBody?: string;
|
|
1283
|
+
additionalBindings?: any[];
|
|
1284
|
+
}[] & ({
|
|
1285
|
+
selector?: string;
|
|
1286
|
+
get?: string | undefined;
|
|
1287
|
+
put?: string | undefined;
|
|
1288
|
+
post?: string | undefined;
|
|
1289
|
+
delete?: string | undefined;
|
|
1290
|
+
patch?: string | undefined;
|
|
1291
|
+
custom?: {
|
|
1292
|
+
kind?: string;
|
|
1293
|
+
path?: string;
|
|
1294
|
+
};
|
|
1295
|
+
body?: string;
|
|
1296
|
+
responseBody?: string;
|
|
1297
|
+
additionalBindings?: any[];
|
|
1298
|
+
} & {
|
|
1299
|
+
selector?: string;
|
|
1300
|
+
get?: string | undefined;
|
|
1301
|
+
put?: string | undefined;
|
|
1302
|
+
post?: string | undefined;
|
|
1303
|
+
delete?: string | undefined;
|
|
1304
|
+
patch?: string | undefined;
|
|
1305
|
+
custom?: {
|
|
1306
|
+
kind?: string;
|
|
1307
|
+
path?: string;
|
|
1308
|
+
} & {
|
|
1309
|
+
kind?: string;
|
|
1310
|
+
path?: string;
|
|
1311
|
+
} & { [K_40 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1312
|
+
body?: string;
|
|
1313
|
+
responseBody?: string;
|
|
1314
|
+
additionalBindings?: {
|
|
1315
|
+
selector?: string;
|
|
1316
|
+
get?: string | undefined;
|
|
1317
|
+
put?: string | undefined;
|
|
1318
|
+
post?: string | undefined;
|
|
1319
|
+
delete?: string | undefined;
|
|
1320
|
+
patch?: string | undefined;
|
|
1321
|
+
custom?: {
|
|
1322
|
+
kind?: string;
|
|
1323
|
+
path?: string;
|
|
1324
|
+
};
|
|
1325
|
+
body?: string;
|
|
1326
|
+
responseBody?: string;
|
|
1327
|
+
additionalBindings?: any[];
|
|
1328
|
+
}[] & ({
|
|
1329
|
+
selector?: string;
|
|
1330
|
+
get?: string | undefined;
|
|
1331
|
+
put?: string | undefined;
|
|
1332
|
+
post?: string | undefined;
|
|
1333
|
+
delete?: string | undefined;
|
|
1334
|
+
patch?: string | undefined;
|
|
1335
|
+
custom?: {
|
|
1336
|
+
kind?: string;
|
|
1337
|
+
path?: string;
|
|
1338
|
+
};
|
|
1339
|
+
body?: string;
|
|
1340
|
+
responseBody?: string;
|
|
1341
|
+
additionalBindings?: any[];
|
|
1342
|
+
} & {
|
|
1343
|
+
selector?: string;
|
|
1344
|
+
get?: string | undefined;
|
|
1345
|
+
put?: string | undefined;
|
|
1346
|
+
post?: string | undefined;
|
|
1347
|
+
delete?: string | undefined;
|
|
1348
|
+
patch?: string | undefined;
|
|
1349
|
+
custom?: {
|
|
1350
|
+
kind?: string;
|
|
1351
|
+
path?: string;
|
|
1352
|
+
} & {
|
|
1353
|
+
kind?: string;
|
|
1354
|
+
path?: string;
|
|
1355
|
+
} & { [K_41 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1356
|
+
body?: string;
|
|
1357
|
+
responseBody?: string;
|
|
1358
|
+
additionalBindings?: {
|
|
1359
|
+
selector?: string;
|
|
1360
|
+
get?: string | undefined;
|
|
1361
|
+
put?: string | undefined;
|
|
1362
|
+
post?: string | undefined;
|
|
1363
|
+
delete?: string | undefined;
|
|
1364
|
+
patch?: string | undefined;
|
|
1365
|
+
custom?: {
|
|
1366
|
+
kind?: string;
|
|
1367
|
+
path?: string;
|
|
1368
|
+
};
|
|
1369
|
+
body?: string;
|
|
1370
|
+
responseBody?: string;
|
|
1371
|
+
additionalBindings?: any[];
|
|
1372
|
+
}[] & ({
|
|
1373
|
+
selector?: string;
|
|
1374
|
+
get?: string | undefined;
|
|
1375
|
+
put?: string | undefined;
|
|
1376
|
+
post?: string | undefined;
|
|
1377
|
+
delete?: string | undefined;
|
|
1378
|
+
patch?: string | undefined;
|
|
1379
|
+
custom?: {
|
|
1380
|
+
kind?: string;
|
|
1381
|
+
path?: string;
|
|
1382
|
+
};
|
|
1383
|
+
body?: string;
|
|
1384
|
+
responseBody?: string;
|
|
1385
|
+
additionalBindings?: any[];
|
|
1386
|
+
} & {
|
|
1387
|
+
selector?: string;
|
|
1388
|
+
get?: string | undefined;
|
|
1389
|
+
put?: string | undefined;
|
|
1390
|
+
post?: string | undefined;
|
|
1391
|
+
delete?: string | undefined;
|
|
1392
|
+
patch?: string | undefined;
|
|
1393
|
+
custom?: {
|
|
1394
|
+
kind?: string;
|
|
1395
|
+
path?: string;
|
|
1396
|
+
} & any & { [K_42 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1397
|
+
body?: string;
|
|
1398
|
+
responseBody?: string;
|
|
1399
|
+
additionalBindings?: {
|
|
1400
|
+
selector?: string;
|
|
1401
|
+
get?: string | undefined;
|
|
1402
|
+
put?: string | undefined;
|
|
1403
|
+
post?: string | undefined;
|
|
1404
|
+
delete?: string | undefined;
|
|
1405
|
+
patch?: string | undefined;
|
|
1406
|
+
custom?: {
|
|
1407
|
+
kind?: string;
|
|
1408
|
+
path?: string;
|
|
1409
|
+
};
|
|
1410
|
+
body?: string;
|
|
1411
|
+
responseBody?: string;
|
|
1412
|
+
additionalBindings?: any[];
|
|
1413
|
+
}[] & ({
|
|
1414
|
+
selector?: string;
|
|
1415
|
+
get?: string | undefined;
|
|
1416
|
+
put?: string | undefined;
|
|
1417
|
+
post?: string | undefined;
|
|
1418
|
+
delete?: string | undefined;
|
|
1419
|
+
patch?: string | undefined;
|
|
1420
|
+
custom?: {
|
|
1421
|
+
kind?: string;
|
|
1422
|
+
path?: string;
|
|
1423
|
+
};
|
|
1424
|
+
body?: string;
|
|
1425
|
+
responseBody?: string;
|
|
1426
|
+
additionalBindings?: any[];
|
|
1427
|
+
} & any & { [K_43 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_44 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1428
|
+
selector?: string;
|
|
1429
|
+
get?: string | undefined;
|
|
1430
|
+
put?: string | undefined;
|
|
1431
|
+
post?: string | undefined;
|
|
1432
|
+
delete?: string | undefined;
|
|
1433
|
+
patch?: string | undefined;
|
|
1434
|
+
custom?: {
|
|
1435
|
+
kind?: string;
|
|
1436
|
+
path?: string;
|
|
1437
|
+
};
|
|
1438
|
+
body?: string;
|
|
1439
|
+
responseBody?: string;
|
|
1440
|
+
additionalBindings?: any[];
|
|
1441
|
+
}[]>]: never; };
|
|
1442
|
+
} & { [K_45 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_46 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1443
|
+
selector?: string;
|
|
1444
|
+
get?: string | undefined;
|
|
1445
|
+
put?: string | undefined;
|
|
1446
|
+
post?: string | undefined;
|
|
1447
|
+
delete?: string | undefined;
|
|
1448
|
+
patch?: string | undefined;
|
|
1449
|
+
custom?: {
|
|
1450
|
+
kind?: string;
|
|
1451
|
+
path?: string;
|
|
1452
|
+
};
|
|
1453
|
+
body?: string;
|
|
1454
|
+
responseBody?: string;
|
|
1455
|
+
additionalBindings?: any[];
|
|
1456
|
+
}[]>]: never; };
|
|
1457
|
+
} & { [K_47 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_48 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1458
|
+
selector?: string;
|
|
1459
|
+
get?: string | undefined;
|
|
1460
|
+
put?: string | undefined;
|
|
1461
|
+
post?: string | undefined;
|
|
1462
|
+
delete?: string | undefined;
|
|
1463
|
+
patch?: string | undefined;
|
|
1464
|
+
custom?: {
|
|
1465
|
+
kind?: string;
|
|
1466
|
+
path?: string;
|
|
1467
|
+
};
|
|
1468
|
+
body?: string;
|
|
1469
|
+
responseBody?: string;
|
|
1470
|
+
additionalBindings?: any[];
|
|
1471
|
+
}[]>]: never; };
|
|
1472
|
+
} & { [K_49 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_50 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1473
|
+
selector?: string;
|
|
1474
|
+
get?: string | undefined;
|
|
1475
|
+
put?: string | undefined;
|
|
1476
|
+
post?: string | undefined;
|
|
1477
|
+
delete?: string | undefined;
|
|
1478
|
+
patch?: string | undefined;
|
|
1479
|
+
custom?: {
|
|
1480
|
+
kind?: string;
|
|
1481
|
+
path?: string;
|
|
1482
|
+
};
|
|
1483
|
+
body?: string;
|
|
1484
|
+
responseBody?: string;
|
|
1485
|
+
additionalBindings?: any[];
|
|
1486
|
+
}[]>]: never; };
|
|
1487
|
+
} & { [K_51 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_52 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1488
|
+
selector?: string;
|
|
1489
|
+
get?: string | undefined;
|
|
1490
|
+
put?: string | undefined;
|
|
1491
|
+
post?: string | undefined;
|
|
1492
|
+
delete?: string | undefined;
|
|
1493
|
+
patch?: string | undefined;
|
|
1494
|
+
custom?: {
|
|
1495
|
+
kind?: string;
|
|
1496
|
+
path?: string;
|
|
1497
|
+
};
|
|
1498
|
+
body?: string;
|
|
1499
|
+
responseBody?: string;
|
|
1500
|
+
additionalBindings?: any[];
|
|
1501
|
+
}[]>]: never; };
|
|
1502
|
+
} & { [K_53 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_54 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1503
|
+
selector?: string;
|
|
1504
|
+
get?: string | undefined;
|
|
1505
|
+
put?: string | undefined;
|
|
1506
|
+
post?: string | undefined;
|
|
1507
|
+
delete?: string | undefined;
|
|
1508
|
+
patch?: string | undefined;
|
|
1509
|
+
custom?: {
|
|
1510
|
+
kind?: string;
|
|
1511
|
+
path?: string;
|
|
1512
|
+
};
|
|
1513
|
+
body?: string;
|
|
1514
|
+
responseBody?: string;
|
|
1515
|
+
additionalBindings?: any[];
|
|
1516
|
+
}[]>]: never; };
|
|
1517
|
+
} & { [K_55 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_56 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1518
|
+
selector?: string;
|
|
1519
|
+
get?: string | undefined;
|
|
1520
|
+
put?: string | undefined;
|
|
1521
|
+
post?: string | undefined;
|
|
1522
|
+
delete?: string | undefined;
|
|
1523
|
+
patch?: string | undefined;
|
|
1524
|
+
custom?: {
|
|
1525
|
+
kind?: string;
|
|
1526
|
+
path?: string;
|
|
1527
|
+
};
|
|
1528
|
+
body?: string;
|
|
1529
|
+
responseBody?: string;
|
|
1530
|
+
additionalBindings?: any[];
|
|
1531
|
+
}[]>]: never; };
|
|
1532
|
+
} & { [K_57 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_58 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1533
|
+
selector?: string;
|
|
1534
|
+
get?: string | undefined;
|
|
1535
|
+
put?: string | undefined;
|
|
1536
|
+
post?: string | undefined;
|
|
1537
|
+
delete?: string | undefined;
|
|
1538
|
+
patch?: string | undefined;
|
|
1539
|
+
custom?: {
|
|
1540
|
+
kind?: string;
|
|
1541
|
+
path?: string;
|
|
1542
|
+
};
|
|
1543
|
+
body?: string;
|
|
1544
|
+
responseBody?: string;
|
|
1545
|
+
additionalBindings?: any[];
|
|
1546
|
+
}[]>]: never; };
|
|
1547
|
+
} & { [K_59 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_60 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
1548
|
+
selector?: string;
|
|
1549
|
+
get?: string | undefined;
|
|
1550
|
+
put?: string | undefined;
|
|
1551
|
+
post?: string | undefined;
|
|
1552
|
+
delete?: string | undefined;
|
|
1553
|
+
patch?: string | undefined;
|
|
1554
|
+
custom?: {
|
|
1555
|
+
kind?: string;
|
|
1556
|
+
path?: string;
|
|
1557
|
+
};
|
|
1558
|
+
body?: string;
|
|
1559
|
+
responseBody?: string;
|
|
1560
|
+
additionalBindings?: any[];
|
|
1561
|
+
}[]>]: never; };
|
|
1562
|
+
} & { [K_61 in Exclude<keyof I_1["rules"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_62 in Exclude<keyof I_1["rules"][number]["additionalBindings"], keyof {
|
|
1563
|
+
selector?: string;
|
|
1564
|
+
get?: string | undefined;
|
|
1565
|
+
put?: string | undefined;
|
|
1566
|
+
post?: string | undefined;
|
|
1567
|
+
delete?: string | undefined;
|
|
1568
|
+
patch?: string | undefined;
|
|
1569
|
+
custom?: {
|
|
1570
|
+
kind?: string;
|
|
1571
|
+
path?: string;
|
|
1572
|
+
};
|
|
1573
|
+
body?: string;
|
|
1574
|
+
responseBody?: string;
|
|
1575
|
+
additionalBindings?: any[];
|
|
1576
|
+
}[]>]: never; };
|
|
1577
|
+
} & { [K_63 in Exclude<keyof I_1["rules"][number], keyof HttpRule>]: never; })[] & { [K_64 in Exclude<keyof I_1["rules"], keyof {
|
|
1578
|
+
selector?: string;
|
|
1579
|
+
get?: string | undefined;
|
|
1580
|
+
put?: string | undefined;
|
|
1581
|
+
post?: string | undefined;
|
|
1582
|
+
delete?: string | undefined;
|
|
1583
|
+
patch?: string | undefined;
|
|
1584
|
+
custom?: {
|
|
1585
|
+
kind?: string;
|
|
1586
|
+
path?: string;
|
|
1587
|
+
};
|
|
1588
|
+
body?: string;
|
|
1589
|
+
responseBody?: string;
|
|
1590
|
+
additionalBindings?: any[];
|
|
1591
|
+
}[]>]: never; };
|
|
1592
|
+
fullyDecodeReservedExpansion?: boolean;
|
|
1593
|
+
} & { [K_65 in Exclude<keyof I_1, keyof Http>]: never; }>(object: I_1): Http;
|
|
1594
|
+
};
|
|
1595
|
+
export declare const HttpRule: {
|
|
1596
|
+
encode(message: HttpRule, writer?: _m0.Writer): _m0.Writer;
|
|
1597
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): HttpRule;
|
|
1598
|
+
fromJSON(object: any): HttpRule;
|
|
1599
|
+
toJSON(message: HttpRule): unknown;
|
|
1600
|
+
create<I extends {
|
|
1601
|
+
selector?: string;
|
|
1602
|
+
get?: string | undefined;
|
|
1603
|
+
put?: string | undefined;
|
|
1604
|
+
post?: string | undefined;
|
|
1605
|
+
delete?: string | undefined;
|
|
1606
|
+
patch?: string | undefined;
|
|
1607
|
+
custom?: {
|
|
1608
|
+
kind?: string;
|
|
1609
|
+
path?: string;
|
|
1610
|
+
};
|
|
1611
|
+
body?: string;
|
|
1612
|
+
responseBody?: string;
|
|
1613
|
+
additionalBindings?: any[];
|
|
1614
|
+
} & {
|
|
1615
|
+
selector?: string;
|
|
1616
|
+
get?: string | undefined;
|
|
1617
|
+
put?: string | undefined;
|
|
1618
|
+
post?: string | undefined;
|
|
1619
|
+
delete?: string | undefined;
|
|
1620
|
+
patch?: string | undefined;
|
|
1621
|
+
custom?: {
|
|
1622
|
+
kind?: string;
|
|
1623
|
+
path?: string;
|
|
1624
|
+
} & {
|
|
1625
|
+
kind?: string;
|
|
1626
|
+
path?: string;
|
|
1627
|
+
} & { [K in Exclude<keyof I["custom"], keyof CustomHttpPattern>]: never; };
|
|
1628
|
+
body?: string;
|
|
1629
|
+
responseBody?: string;
|
|
1630
|
+
additionalBindings?: {
|
|
1631
|
+
selector?: string;
|
|
1632
|
+
get?: string | undefined;
|
|
1633
|
+
put?: string | undefined;
|
|
1634
|
+
post?: string | undefined;
|
|
1635
|
+
delete?: string | undefined;
|
|
1636
|
+
patch?: string | undefined;
|
|
1637
|
+
custom?: {
|
|
1638
|
+
kind?: string;
|
|
1639
|
+
path?: string;
|
|
1640
|
+
};
|
|
1641
|
+
body?: string;
|
|
1642
|
+
responseBody?: string;
|
|
1643
|
+
additionalBindings?: any[];
|
|
1644
|
+
}[] & ({
|
|
1645
|
+
selector?: string;
|
|
1646
|
+
get?: string | undefined;
|
|
1647
|
+
put?: string | undefined;
|
|
1648
|
+
post?: string | undefined;
|
|
1649
|
+
delete?: string | undefined;
|
|
1650
|
+
patch?: string | undefined;
|
|
1651
|
+
custom?: {
|
|
1652
|
+
kind?: string;
|
|
1653
|
+
path?: string;
|
|
1654
|
+
};
|
|
1655
|
+
body?: string;
|
|
1656
|
+
responseBody?: string;
|
|
1657
|
+
additionalBindings?: any[];
|
|
1658
|
+
} & {
|
|
1659
|
+
selector?: string;
|
|
1660
|
+
get?: string | undefined;
|
|
1661
|
+
put?: string | undefined;
|
|
1662
|
+
post?: string | undefined;
|
|
1663
|
+
delete?: string | undefined;
|
|
1664
|
+
patch?: string | undefined;
|
|
1665
|
+
custom?: {
|
|
1666
|
+
kind?: string;
|
|
1667
|
+
path?: string;
|
|
1668
|
+
} & {
|
|
1669
|
+
kind?: string;
|
|
1670
|
+
path?: string;
|
|
1671
|
+
} & { [K_1 in Exclude<keyof I["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1672
|
+
body?: string;
|
|
1673
|
+
responseBody?: string;
|
|
1674
|
+
additionalBindings?: {
|
|
1675
|
+
selector?: string;
|
|
1676
|
+
get?: string | undefined;
|
|
1677
|
+
put?: string | undefined;
|
|
1678
|
+
post?: string | undefined;
|
|
1679
|
+
delete?: string | undefined;
|
|
1680
|
+
patch?: string | undefined;
|
|
1681
|
+
custom?: {
|
|
1682
|
+
kind?: string;
|
|
1683
|
+
path?: string;
|
|
1684
|
+
};
|
|
1685
|
+
body?: string;
|
|
1686
|
+
responseBody?: string;
|
|
1687
|
+
additionalBindings?: any[];
|
|
1688
|
+
}[] & ({
|
|
1689
|
+
selector?: string;
|
|
1690
|
+
get?: string | undefined;
|
|
1691
|
+
put?: string | undefined;
|
|
1692
|
+
post?: string | undefined;
|
|
1693
|
+
delete?: string | undefined;
|
|
1694
|
+
patch?: string | undefined;
|
|
1695
|
+
custom?: {
|
|
1696
|
+
kind?: string;
|
|
1697
|
+
path?: string;
|
|
1698
|
+
};
|
|
1699
|
+
body?: string;
|
|
1700
|
+
responseBody?: string;
|
|
1701
|
+
additionalBindings?: any[];
|
|
1702
|
+
} & {
|
|
1703
|
+
selector?: string;
|
|
1704
|
+
get?: string | undefined;
|
|
1705
|
+
put?: string | undefined;
|
|
1706
|
+
post?: string | undefined;
|
|
1707
|
+
delete?: string | undefined;
|
|
1708
|
+
patch?: string | undefined;
|
|
1709
|
+
custom?: {
|
|
1710
|
+
kind?: string;
|
|
1711
|
+
path?: string;
|
|
1712
|
+
} & {
|
|
1713
|
+
kind?: string;
|
|
1714
|
+
path?: string;
|
|
1715
|
+
} & { [K_2 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1716
|
+
body?: string;
|
|
1717
|
+
responseBody?: string;
|
|
1718
|
+
additionalBindings?: {
|
|
1719
|
+
selector?: string;
|
|
1720
|
+
get?: string | undefined;
|
|
1721
|
+
put?: string | undefined;
|
|
1722
|
+
post?: string | undefined;
|
|
1723
|
+
delete?: string | undefined;
|
|
1724
|
+
patch?: string | undefined;
|
|
1725
|
+
custom?: {
|
|
1726
|
+
kind?: string;
|
|
1727
|
+
path?: string;
|
|
1728
|
+
};
|
|
1729
|
+
body?: string;
|
|
1730
|
+
responseBody?: string;
|
|
1731
|
+
additionalBindings?: any[];
|
|
1732
|
+
}[] & ({
|
|
1733
|
+
selector?: string;
|
|
1734
|
+
get?: string | undefined;
|
|
1735
|
+
put?: string | undefined;
|
|
1736
|
+
post?: string | undefined;
|
|
1737
|
+
delete?: string | undefined;
|
|
1738
|
+
patch?: string | undefined;
|
|
1739
|
+
custom?: {
|
|
1740
|
+
kind?: string;
|
|
1741
|
+
path?: string;
|
|
1742
|
+
};
|
|
1743
|
+
body?: string;
|
|
1744
|
+
responseBody?: string;
|
|
1745
|
+
additionalBindings?: any[];
|
|
1746
|
+
} & {
|
|
1747
|
+
selector?: string;
|
|
1748
|
+
get?: string | undefined;
|
|
1749
|
+
put?: string | undefined;
|
|
1750
|
+
post?: string | undefined;
|
|
1751
|
+
delete?: string | undefined;
|
|
1752
|
+
patch?: string | undefined;
|
|
1753
|
+
custom?: {
|
|
1754
|
+
kind?: string;
|
|
1755
|
+
path?: string;
|
|
1756
|
+
} & {
|
|
1757
|
+
kind?: string;
|
|
1758
|
+
path?: string;
|
|
1759
|
+
} & { [K_3 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1760
|
+
body?: string;
|
|
1761
|
+
responseBody?: string;
|
|
1762
|
+
additionalBindings?: {
|
|
1763
|
+
selector?: string;
|
|
1764
|
+
get?: string | undefined;
|
|
1765
|
+
put?: string | undefined;
|
|
1766
|
+
post?: string | undefined;
|
|
1767
|
+
delete?: string | undefined;
|
|
1768
|
+
patch?: string | undefined;
|
|
1769
|
+
custom?: {
|
|
1770
|
+
kind?: string;
|
|
1771
|
+
path?: string;
|
|
1772
|
+
};
|
|
1773
|
+
body?: string;
|
|
1774
|
+
responseBody?: string;
|
|
1775
|
+
additionalBindings?: any[];
|
|
1776
|
+
}[] & ({
|
|
1777
|
+
selector?: string;
|
|
1778
|
+
get?: string | undefined;
|
|
1779
|
+
put?: string | undefined;
|
|
1780
|
+
post?: string | undefined;
|
|
1781
|
+
delete?: string | undefined;
|
|
1782
|
+
patch?: string | undefined;
|
|
1783
|
+
custom?: {
|
|
1784
|
+
kind?: string;
|
|
1785
|
+
path?: string;
|
|
1786
|
+
};
|
|
1787
|
+
body?: string;
|
|
1788
|
+
responseBody?: string;
|
|
1789
|
+
additionalBindings?: any[];
|
|
1790
|
+
} & {
|
|
1791
|
+
selector?: string;
|
|
1792
|
+
get?: string | undefined;
|
|
1793
|
+
put?: string | undefined;
|
|
1794
|
+
post?: string | undefined;
|
|
1795
|
+
delete?: string | undefined;
|
|
1796
|
+
patch?: string | undefined;
|
|
1797
|
+
custom?: {
|
|
1798
|
+
kind?: string;
|
|
1799
|
+
path?: string;
|
|
1800
|
+
} & {
|
|
1801
|
+
kind?: string;
|
|
1802
|
+
path?: string;
|
|
1803
|
+
} & { [K_4 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1804
|
+
body?: string;
|
|
1805
|
+
responseBody?: string;
|
|
1806
|
+
additionalBindings?: {
|
|
1807
|
+
selector?: string;
|
|
1808
|
+
get?: string | undefined;
|
|
1809
|
+
put?: string | undefined;
|
|
1810
|
+
post?: string | undefined;
|
|
1811
|
+
delete?: string | undefined;
|
|
1812
|
+
patch?: string | undefined;
|
|
1813
|
+
custom?: {
|
|
1814
|
+
kind?: string;
|
|
1815
|
+
path?: string;
|
|
1816
|
+
};
|
|
1817
|
+
body?: string;
|
|
1818
|
+
responseBody?: string;
|
|
1819
|
+
additionalBindings?: any[];
|
|
1820
|
+
}[] & ({
|
|
1821
|
+
selector?: string;
|
|
1822
|
+
get?: string | undefined;
|
|
1823
|
+
put?: string | undefined;
|
|
1824
|
+
post?: string | undefined;
|
|
1825
|
+
delete?: string | undefined;
|
|
1826
|
+
patch?: string | undefined;
|
|
1827
|
+
custom?: {
|
|
1828
|
+
kind?: string;
|
|
1829
|
+
path?: string;
|
|
1830
|
+
};
|
|
1831
|
+
body?: string;
|
|
1832
|
+
responseBody?: string;
|
|
1833
|
+
additionalBindings?: any[];
|
|
1834
|
+
} & {
|
|
1835
|
+
selector?: string;
|
|
1836
|
+
get?: string | undefined;
|
|
1837
|
+
put?: string | undefined;
|
|
1838
|
+
post?: string | undefined;
|
|
1839
|
+
delete?: string | undefined;
|
|
1840
|
+
patch?: string | undefined;
|
|
1841
|
+
custom?: {
|
|
1842
|
+
kind?: string;
|
|
1843
|
+
path?: string;
|
|
1844
|
+
} & {
|
|
1845
|
+
kind?: string;
|
|
1846
|
+
path?: string;
|
|
1847
|
+
} & { [K_5 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1848
|
+
body?: string;
|
|
1849
|
+
responseBody?: string;
|
|
1850
|
+
additionalBindings?: {
|
|
1851
|
+
selector?: string;
|
|
1852
|
+
get?: string | undefined;
|
|
1853
|
+
put?: string | undefined;
|
|
1854
|
+
post?: string | undefined;
|
|
1855
|
+
delete?: string | undefined;
|
|
1856
|
+
patch?: string | undefined;
|
|
1857
|
+
custom?: {
|
|
1858
|
+
kind?: string;
|
|
1859
|
+
path?: string;
|
|
1860
|
+
};
|
|
1861
|
+
body?: string;
|
|
1862
|
+
responseBody?: string;
|
|
1863
|
+
additionalBindings?: any[];
|
|
1864
|
+
}[] & ({
|
|
1865
|
+
selector?: string;
|
|
1866
|
+
get?: string | undefined;
|
|
1867
|
+
put?: string | undefined;
|
|
1868
|
+
post?: string | undefined;
|
|
1869
|
+
delete?: string | undefined;
|
|
1870
|
+
patch?: string | undefined;
|
|
1871
|
+
custom?: {
|
|
1872
|
+
kind?: string;
|
|
1873
|
+
path?: string;
|
|
1874
|
+
};
|
|
1875
|
+
body?: string;
|
|
1876
|
+
responseBody?: string;
|
|
1877
|
+
additionalBindings?: any[];
|
|
1878
|
+
} & {
|
|
1879
|
+
selector?: string;
|
|
1880
|
+
get?: string | undefined;
|
|
1881
|
+
put?: string | undefined;
|
|
1882
|
+
post?: string | undefined;
|
|
1883
|
+
delete?: string | undefined;
|
|
1884
|
+
patch?: string | undefined;
|
|
1885
|
+
custom?: {
|
|
1886
|
+
kind?: string;
|
|
1887
|
+
path?: string;
|
|
1888
|
+
} & {
|
|
1889
|
+
kind?: string;
|
|
1890
|
+
path?: string;
|
|
1891
|
+
} & { [K_6 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1892
|
+
body?: string;
|
|
1893
|
+
responseBody?: string;
|
|
1894
|
+
additionalBindings?: {
|
|
1895
|
+
selector?: string;
|
|
1896
|
+
get?: string | undefined;
|
|
1897
|
+
put?: string | undefined;
|
|
1898
|
+
post?: string | undefined;
|
|
1899
|
+
delete?: string | undefined;
|
|
1900
|
+
patch?: string | undefined;
|
|
1901
|
+
custom?: {
|
|
1902
|
+
kind?: string;
|
|
1903
|
+
path?: string;
|
|
1904
|
+
};
|
|
1905
|
+
body?: string;
|
|
1906
|
+
responseBody?: string;
|
|
1907
|
+
additionalBindings?: any[];
|
|
1908
|
+
}[] & ({
|
|
1909
|
+
selector?: string;
|
|
1910
|
+
get?: string | undefined;
|
|
1911
|
+
put?: string | undefined;
|
|
1912
|
+
post?: string | undefined;
|
|
1913
|
+
delete?: string | undefined;
|
|
1914
|
+
patch?: string | undefined;
|
|
1915
|
+
custom?: {
|
|
1916
|
+
kind?: string;
|
|
1917
|
+
path?: string;
|
|
1918
|
+
};
|
|
1919
|
+
body?: string;
|
|
1920
|
+
responseBody?: string;
|
|
1921
|
+
additionalBindings?: any[];
|
|
1922
|
+
} & {
|
|
1923
|
+
selector?: string;
|
|
1924
|
+
get?: string | undefined;
|
|
1925
|
+
put?: string | undefined;
|
|
1926
|
+
post?: string | undefined;
|
|
1927
|
+
delete?: string | undefined;
|
|
1928
|
+
patch?: string | undefined;
|
|
1929
|
+
custom?: {
|
|
1930
|
+
kind?: string;
|
|
1931
|
+
path?: string;
|
|
1932
|
+
} & {
|
|
1933
|
+
kind?: string;
|
|
1934
|
+
path?: string;
|
|
1935
|
+
} & { [K_7 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1936
|
+
body?: string;
|
|
1937
|
+
responseBody?: string;
|
|
1938
|
+
additionalBindings?: {
|
|
1939
|
+
selector?: string;
|
|
1940
|
+
get?: string | undefined;
|
|
1941
|
+
put?: string | undefined;
|
|
1942
|
+
post?: string | undefined;
|
|
1943
|
+
delete?: string | undefined;
|
|
1944
|
+
patch?: string | undefined;
|
|
1945
|
+
custom?: {
|
|
1946
|
+
kind?: string;
|
|
1947
|
+
path?: string;
|
|
1948
|
+
};
|
|
1949
|
+
body?: string;
|
|
1950
|
+
responseBody?: string;
|
|
1951
|
+
additionalBindings?: any[];
|
|
1952
|
+
}[] & ({
|
|
1953
|
+
selector?: string;
|
|
1954
|
+
get?: string | undefined;
|
|
1955
|
+
put?: string | undefined;
|
|
1956
|
+
post?: string | undefined;
|
|
1957
|
+
delete?: string | undefined;
|
|
1958
|
+
patch?: string | undefined;
|
|
1959
|
+
custom?: {
|
|
1960
|
+
kind?: string;
|
|
1961
|
+
path?: string;
|
|
1962
|
+
};
|
|
1963
|
+
body?: string;
|
|
1964
|
+
responseBody?: string;
|
|
1965
|
+
additionalBindings?: any[];
|
|
1966
|
+
} & {
|
|
1967
|
+
selector?: string;
|
|
1968
|
+
get?: string | undefined;
|
|
1969
|
+
put?: string | undefined;
|
|
1970
|
+
post?: string | undefined;
|
|
1971
|
+
delete?: string | undefined;
|
|
1972
|
+
patch?: string | undefined;
|
|
1973
|
+
custom?: {
|
|
1974
|
+
kind?: string;
|
|
1975
|
+
path?: string;
|
|
1976
|
+
} & {
|
|
1977
|
+
kind?: string;
|
|
1978
|
+
path?: string;
|
|
1979
|
+
} & { [K_8 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
1980
|
+
body?: string;
|
|
1981
|
+
responseBody?: string;
|
|
1982
|
+
additionalBindings?: {
|
|
1983
|
+
selector?: string;
|
|
1984
|
+
get?: string | undefined;
|
|
1985
|
+
put?: string | undefined;
|
|
1986
|
+
post?: string | undefined;
|
|
1987
|
+
delete?: string | undefined;
|
|
1988
|
+
patch?: string | undefined;
|
|
1989
|
+
custom?: {
|
|
1990
|
+
kind?: string;
|
|
1991
|
+
path?: string;
|
|
1992
|
+
};
|
|
1993
|
+
body?: string;
|
|
1994
|
+
responseBody?: string;
|
|
1995
|
+
additionalBindings?: any[];
|
|
1996
|
+
}[] & ({
|
|
1997
|
+
selector?: string;
|
|
1998
|
+
get?: string | undefined;
|
|
1999
|
+
put?: string | undefined;
|
|
2000
|
+
post?: string | undefined;
|
|
2001
|
+
delete?: string | undefined;
|
|
2002
|
+
patch?: string | undefined;
|
|
2003
|
+
custom?: {
|
|
2004
|
+
kind?: string;
|
|
2005
|
+
path?: string;
|
|
2006
|
+
};
|
|
2007
|
+
body?: string;
|
|
2008
|
+
responseBody?: string;
|
|
2009
|
+
additionalBindings?: any[];
|
|
2010
|
+
} & {
|
|
2011
|
+
selector?: string;
|
|
2012
|
+
get?: string | undefined;
|
|
2013
|
+
put?: string | undefined;
|
|
2014
|
+
post?: string | undefined;
|
|
2015
|
+
delete?: string | undefined;
|
|
2016
|
+
patch?: string | undefined;
|
|
2017
|
+
custom?: {
|
|
2018
|
+
kind?: string;
|
|
2019
|
+
path?: string;
|
|
2020
|
+
} & {
|
|
2021
|
+
kind?: string;
|
|
2022
|
+
path?: string;
|
|
2023
|
+
} & { [K_9 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2024
|
+
body?: string;
|
|
2025
|
+
responseBody?: string;
|
|
2026
|
+
additionalBindings?: {
|
|
2027
|
+
selector?: string;
|
|
2028
|
+
get?: string | undefined;
|
|
2029
|
+
put?: string | undefined;
|
|
2030
|
+
post?: string | undefined;
|
|
2031
|
+
delete?: string | undefined;
|
|
2032
|
+
patch?: string | undefined;
|
|
2033
|
+
custom?: {
|
|
2034
|
+
kind?: string;
|
|
2035
|
+
path?: string;
|
|
2036
|
+
};
|
|
2037
|
+
body?: string;
|
|
2038
|
+
responseBody?: string;
|
|
2039
|
+
additionalBindings?: any[];
|
|
2040
|
+
}[] & ({
|
|
2041
|
+
selector?: string;
|
|
2042
|
+
get?: string | undefined;
|
|
2043
|
+
put?: string | undefined;
|
|
2044
|
+
post?: string | undefined;
|
|
2045
|
+
delete?: string | undefined;
|
|
2046
|
+
patch?: string | undefined;
|
|
2047
|
+
custom?: {
|
|
2048
|
+
kind?: string;
|
|
2049
|
+
path?: string;
|
|
2050
|
+
};
|
|
2051
|
+
body?: string;
|
|
2052
|
+
responseBody?: string;
|
|
2053
|
+
additionalBindings?: any[];
|
|
2054
|
+
} & {
|
|
2055
|
+
selector?: string;
|
|
2056
|
+
get?: string | undefined;
|
|
2057
|
+
put?: string | undefined;
|
|
2058
|
+
post?: string | undefined;
|
|
2059
|
+
delete?: string | undefined;
|
|
2060
|
+
patch?: string | undefined;
|
|
2061
|
+
custom?: {
|
|
2062
|
+
kind?: string;
|
|
2063
|
+
path?: string;
|
|
2064
|
+
} & any & { [K_10 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2065
|
+
body?: string;
|
|
2066
|
+
responseBody?: string;
|
|
2067
|
+
additionalBindings?: {
|
|
2068
|
+
selector?: string;
|
|
2069
|
+
get?: string | undefined;
|
|
2070
|
+
put?: string | undefined;
|
|
2071
|
+
post?: string | undefined;
|
|
2072
|
+
delete?: string | undefined;
|
|
2073
|
+
patch?: string | undefined;
|
|
2074
|
+
custom?: {
|
|
2075
|
+
kind?: string;
|
|
2076
|
+
path?: string;
|
|
2077
|
+
};
|
|
2078
|
+
body?: string;
|
|
2079
|
+
responseBody?: string;
|
|
2080
|
+
additionalBindings?: any[];
|
|
2081
|
+
}[] & ({
|
|
2082
|
+
selector?: string;
|
|
2083
|
+
get?: string | undefined;
|
|
2084
|
+
put?: string | undefined;
|
|
2085
|
+
post?: string | undefined;
|
|
2086
|
+
delete?: string | undefined;
|
|
2087
|
+
patch?: string | undefined;
|
|
2088
|
+
custom?: {
|
|
2089
|
+
kind?: string;
|
|
2090
|
+
path?: string;
|
|
2091
|
+
};
|
|
2092
|
+
body?: string;
|
|
2093
|
+
responseBody?: string;
|
|
2094
|
+
additionalBindings?: any[];
|
|
2095
|
+
} & any & { [K_11 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_12 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2096
|
+
selector?: string;
|
|
2097
|
+
get?: string | undefined;
|
|
2098
|
+
put?: string | undefined;
|
|
2099
|
+
post?: string | undefined;
|
|
2100
|
+
delete?: string | undefined;
|
|
2101
|
+
patch?: string | undefined;
|
|
2102
|
+
custom?: {
|
|
2103
|
+
kind?: string;
|
|
2104
|
+
path?: string;
|
|
2105
|
+
};
|
|
2106
|
+
body?: string;
|
|
2107
|
+
responseBody?: string;
|
|
2108
|
+
additionalBindings?: any[];
|
|
2109
|
+
}[]>]: never; };
|
|
2110
|
+
} & { [K_13 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_14 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2111
|
+
selector?: string;
|
|
2112
|
+
get?: string | undefined;
|
|
2113
|
+
put?: string | undefined;
|
|
2114
|
+
post?: string | undefined;
|
|
2115
|
+
delete?: string | undefined;
|
|
2116
|
+
patch?: string | undefined;
|
|
2117
|
+
custom?: {
|
|
2118
|
+
kind?: string;
|
|
2119
|
+
path?: string;
|
|
2120
|
+
};
|
|
2121
|
+
body?: string;
|
|
2122
|
+
responseBody?: string;
|
|
2123
|
+
additionalBindings?: any[];
|
|
2124
|
+
}[]>]: never; };
|
|
2125
|
+
} & { [K_15 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_16 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2126
|
+
selector?: string;
|
|
2127
|
+
get?: string | undefined;
|
|
2128
|
+
put?: string | undefined;
|
|
2129
|
+
post?: string | undefined;
|
|
2130
|
+
delete?: string | undefined;
|
|
2131
|
+
patch?: string | undefined;
|
|
2132
|
+
custom?: {
|
|
2133
|
+
kind?: string;
|
|
2134
|
+
path?: string;
|
|
2135
|
+
};
|
|
2136
|
+
body?: string;
|
|
2137
|
+
responseBody?: string;
|
|
2138
|
+
additionalBindings?: any[];
|
|
2139
|
+
}[]>]: never; };
|
|
2140
|
+
} & { [K_17 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_18 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2141
|
+
selector?: string;
|
|
2142
|
+
get?: string | undefined;
|
|
2143
|
+
put?: string | undefined;
|
|
2144
|
+
post?: string | undefined;
|
|
2145
|
+
delete?: string | undefined;
|
|
2146
|
+
patch?: string | undefined;
|
|
2147
|
+
custom?: {
|
|
2148
|
+
kind?: string;
|
|
2149
|
+
path?: string;
|
|
2150
|
+
};
|
|
2151
|
+
body?: string;
|
|
2152
|
+
responseBody?: string;
|
|
2153
|
+
additionalBindings?: any[];
|
|
2154
|
+
}[]>]: never; };
|
|
2155
|
+
} & { [K_19 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_20 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2156
|
+
selector?: string;
|
|
2157
|
+
get?: string | undefined;
|
|
2158
|
+
put?: string | undefined;
|
|
2159
|
+
post?: string | undefined;
|
|
2160
|
+
delete?: string | undefined;
|
|
2161
|
+
patch?: string | undefined;
|
|
2162
|
+
custom?: {
|
|
2163
|
+
kind?: string;
|
|
2164
|
+
path?: string;
|
|
2165
|
+
};
|
|
2166
|
+
body?: string;
|
|
2167
|
+
responseBody?: string;
|
|
2168
|
+
additionalBindings?: any[];
|
|
2169
|
+
}[]>]: never; };
|
|
2170
|
+
} & { [K_21 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_22 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2171
|
+
selector?: string;
|
|
2172
|
+
get?: string | undefined;
|
|
2173
|
+
put?: string | undefined;
|
|
2174
|
+
post?: string | undefined;
|
|
2175
|
+
delete?: string | undefined;
|
|
2176
|
+
patch?: string | undefined;
|
|
2177
|
+
custom?: {
|
|
2178
|
+
kind?: string;
|
|
2179
|
+
path?: string;
|
|
2180
|
+
};
|
|
2181
|
+
body?: string;
|
|
2182
|
+
responseBody?: string;
|
|
2183
|
+
additionalBindings?: any[];
|
|
2184
|
+
}[]>]: never; };
|
|
2185
|
+
} & { [K_23 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_24 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2186
|
+
selector?: string;
|
|
2187
|
+
get?: string | undefined;
|
|
2188
|
+
put?: string | undefined;
|
|
2189
|
+
post?: string | undefined;
|
|
2190
|
+
delete?: string | undefined;
|
|
2191
|
+
patch?: string | undefined;
|
|
2192
|
+
custom?: {
|
|
2193
|
+
kind?: string;
|
|
2194
|
+
path?: string;
|
|
2195
|
+
};
|
|
2196
|
+
body?: string;
|
|
2197
|
+
responseBody?: string;
|
|
2198
|
+
additionalBindings?: any[];
|
|
2199
|
+
}[]>]: never; };
|
|
2200
|
+
} & { [K_25 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_26 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2201
|
+
selector?: string;
|
|
2202
|
+
get?: string | undefined;
|
|
2203
|
+
put?: string | undefined;
|
|
2204
|
+
post?: string | undefined;
|
|
2205
|
+
delete?: string | undefined;
|
|
2206
|
+
patch?: string | undefined;
|
|
2207
|
+
custom?: {
|
|
2208
|
+
kind?: string;
|
|
2209
|
+
path?: string;
|
|
2210
|
+
};
|
|
2211
|
+
body?: string;
|
|
2212
|
+
responseBody?: string;
|
|
2213
|
+
additionalBindings?: any[];
|
|
2214
|
+
}[]>]: never; };
|
|
2215
|
+
} & { [K_27 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_28 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2216
|
+
selector?: string;
|
|
2217
|
+
get?: string | undefined;
|
|
2218
|
+
put?: string | undefined;
|
|
2219
|
+
post?: string | undefined;
|
|
2220
|
+
delete?: string | undefined;
|
|
2221
|
+
patch?: string | undefined;
|
|
2222
|
+
custom?: {
|
|
2223
|
+
kind?: string;
|
|
2224
|
+
path?: string;
|
|
2225
|
+
};
|
|
2226
|
+
body?: string;
|
|
2227
|
+
responseBody?: string;
|
|
2228
|
+
additionalBindings?: any[];
|
|
2229
|
+
}[]>]: never; };
|
|
2230
|
+
} & { [K_29 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_30 in Exclude<keyof I["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2231
|
+
selector?: string;
|
|
2232
|
+
get?: string | undefined;
|
|
2233
|
+
put?: string | undefined;
|
|
2234
|
+
post?: string | undefined;
|
|
2235
|
+
delete?: string | undefined;
|
|
2236
|
+
patch?: string | undefined;
|
|
2237
|
+
custom?: {
|
|
2238
|
+
kind?: string;
|
|
2239
|
+
path?: string;
|
|
2240
|
+
};
|
|
2241
|
+
body?: string;
|
|
2242
|
+
responseBody?: string;
|
|
2243
|
+
additionalBindings?: any[];
|
|
2244
|
+
}[]>]: never; };
|
|
2245
|
+
} & { [K_31 in Exclude<keyof I["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_32 in Exclude<keyof I["additionalBindings"], keyof {
|
|
2246
|
+
selector?: string;
|
|
2247
|
+
get?: string | undefined;
|
|
2248
|
+
put?: string | undefined;
|
|
2249
|
+
post?: string | undefined;
|
|
2250
|
+
delete?: string | undefined;
|
|
2251
|
+
patch?: string | undefined;
|
|
2252
|
+
custom?: {
|
|
2253
|
+
kind?: string;
|
|
2254
|
+
path?: string;
|
|
2255
|
+
};
|
|
2256
|
+
body?: string;
|
|
2257
|
+
responseBody?: string;
|
|
2258
|
+
additionalBindings?: any[];
|
|
2259
|
+
}[]>]: never; };
|
|
2260
|
+
} & { [K_33 in Exclude<keyof I, keyof HttpRule>]: never; }>(base?: I): HttpRule;
|
|
2261
|
+
fromPartial<I_1 extends {
|
|
2262
|
+
selector?: string;
|
|
2263
|
+
get?: string | undefined;
|
|
2264
|
+
put?: string | undefined;
|
|
2265
|
+
post?: string | undefined;
|
|
2266
|
+
delete?: string | undefined;
|
|
2267
|
+
patch?: string | undefined;
|
|
2268
|
+
custom?: {
|
|
2269
|
+
kind?: string;
|
|
2270
|
+
path?: string;
|
|
2271
|
+
};
|
|
2272
|
+
body?: string;
|
|
2273
|
+
responseBody?: string;
|
|
2274
|
+
additionalBindings?: any[];
|
|
2275
|
+
} & {
|
|
2276
|
+
selector?: string;
|
|
2277
|
+
get?: string | undefined;
|
|
2278
|
+
put?: string | undefined;
|
|
2279
|
+
post?: string | undefined;
|
|
2280
|
+
delete?: string | undefined;
|
|
2281
|
+
patch?: string | undefined;
|
|
2282
|
+
custom?: {
|
|
2283
|
+
kind?: string;
|
|
2284
|
+
path?: string;
|
|
2285
|
+
} & {
|
|
2286
|
+
kind?: string;
|
|
2287
|
+
path?: string;
|
|
2288
|
+
} & { [K_34 in Exclude<keyof I_1["custom"], keyof CustomHttpPattern>]: never; };
|
|
2289
|
+
body?: string;
|
|
2290
|
+
responseBody?: string;
|
|
2291
|
+
additionalBindings?: {
|
|
2292
|
+
selector?: string;
|
|
2293
|
+
get?: string | undefined;
|
|
2294
|
+
put?: string | undefined;
|
|
2295
|
+
post?: string | undefined;
|
|
2296
|
+
delete?: string | undefined;
|
|
2297
|
+
patch?: string | undefined;
|
|
2298
|
+
custom?: {
|
|
2299
|
+
kind?: string;
|
|
2300
|
+
path?: string;
|
|
2301
|
+
};
|
|
2302
|
+
body?: string;
|
|
2303
|
+
responseBody?: string;
|
|
2304
|
+
additionalBindings?: any[];
|
|
2305
|
+
}[] & ({
|
|
2306
|
+
selector?: string;
|
|
2307
|
+
get?: string | undefined;
|
|
2308
|
+
put?: string | undefined;
|
|
2309
|
+
post?: string | undefined;
|
|
2310
|
+
delete?: string | undefined;
|
|
2311
|
+
patch?: string | undefined;
|
|
2312
|
+
custom?: {
|
|
2313
|
+
kind?: string;
|
|
2314
|
+
path?: string;
|
|
2315
|
+
};
|
|
2316
|
+
body?: string;
|
|
2317
|
+
responseBody?: string;
|
|
2318
|
+
additionalBindings?: any[];
|
|
2319
|
+
} & {
|
|
2320
|
+
selector?: string;
|
|
2321
|
+
get?: string | undefined;
|
|
2322
|
+
put?: string | undefined;
|
|
2323
|
+
post?: string | undefined;
|
|
2324
|
+
delete?: string | undefined;
|
|
2325
|
+
patch?: string | undefined;
|
|
2326
|
+
custom?: {
|
|
2327
|
+
kind?: string;
|
|
2328
|
+
path?: string;
|
|
2329
|
+
} & {
|
|
2330
|
+
kind?: string;
|
|
2331
|
+
path?: string;
|
|
2332
|
+
} & { [K_35 in Exclude<keyof I_1["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2333
|
+
body?: string;
|
|
2334
|
+
responseBody?: string;
|
|
2335
|
+
additionalBindings?: {
|
|
2336
|
+
selector?: string;
|
|
2337
|
+
get?: string | undefined;
|
|
2338
|
+
put?: string | undefined;
|
|
2339
|
+
post?: string | undefined;
|
|
2340
|
+
delete?: string | undefined;
|
|
2341
|
+
patch?: string | undefined;
|
|
2342
|
+
custom?: {
|
|
2343
|
+
kind?: string;
|
|
2344
|
+
path?: string;
|
|
2345
|
+
};
|
|
2346
|
+
body?: string;
|
|
2347
|
+
responseBody?: string;
|
|
2348
|
+
additionalBindings?: any[];
|
|
2349
|
+
}[] & ({
|
|
2350
|
+
selector?: string;
|
|
2351
|
+
get?: string | undefined;
|
|
2352
|
+
put?: string | undefined;
|
|
2353
|
+
post?: string | undefined;
|
|
2354
|
+
delete?: string | undefined;
|
|
2355
|
+
patch?: string | undefined;
|
|
2356
|
+
custom?: {
|
|
2357
|
+
kind?: string;
|
|
2358
|
+
path?: string;
|
|
2359
|
+
};
|
|
2360
|
+
body?: string;
|
|
2361
|
+
responseBody?: string;
|
|
2362
|
+
additionalBindings?: any[];
|
|
2363
|
+
} & {
|
|
2364
|
+
selector?: string;
|
|
2365
|
+
get?: string | undefined;
|
|
2366
|
+
put?: string | undefined;
|
|
2367
|
+
post?: string | undefined;
|
|
2368
|
+
delete?: string | undefined;
|
|
2369
|
+
patch?: string | undefined;
|
|
2370
|
+
custom?: {
|
|
2371
|
+
kind?: string;
|
|
2372
|
+
path?: string;
|
|
2373
|
+
} & {
|
|
2374
|
+
kind?: string;
|
|
2375
|
+
path?: string;
|
|
2376
|
+
} & { [K_36 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2377
|
+
body?: string;
|
|
2378
|
+
responseBody?: string;
|
|
2379
|
+
additionalBindings?: {
|
|
2380
|
+
selector?: string;
|
|
2381
|
+
get?: string | undefined;
|
|
2382
|
+
put?: string | undefined;
|
|
2383
|
+
post?: string | undefined;
|
|
2384
|
+
delete?: string | undefined;
|
|
2385
|
+
patch?: string | undefined;
|
|
2386
|
+
custom?: {
|
|
2387
|
+
kind?: string;
|
|
2388
|
+
path?: string;
|
|
2389
|
+
};
|
|
2390
|
+
body?: string;
|
|
2391
|
+
responseBody?: string;
|
|
2392
|
+
additionalBindings?: any[];
|
|
2393
|
+
}[] & ({
|
|
2394
|
+
selector?: string;
|
|
2395
|
+
get?: string | undefined;
|
|
2396
|
+
put?: string | undefined;
|
|
2397
|
+
post?: string | undefined;
|
|
2398
|
+
delete?: string | undefined;
|
|
2399
|
+
patch?: string | undefined;
|
|
2400
|
+
custom?: {
|
|
2401
|
+
kind?: string;
|
|
2402
|
+
path?: string;
|
|
2403
|
+
};
|
|
2404
|
+
body?: string;
|
|
2405
|
+
responseBody?: string;
|
|
2406
|
+
additionalBindings?: any[];
|
|
2407
|
+
} & {
|
|
2408
|
+
selector?: string;
|
|
2409
|
+
get?: string | undefined;
|
|
2410
|
+
put?: string | undefined;
|
|
2411
|
+
post?: string | undefined;
|
|
2412
|
+
delete?: string | undefined;
|
|
2413
|
+
patch?: string | undefined;
|
|
2414
|
+
custom?: {
|
|
2415
|
+
kind?: string;
|
|
2416
|
+
path?: string;
|
|
2417
|
+
} & {
|
|
2418
|
+
kind?: string;
|
|
2419
|
+
path?: string;
|
|
2420
|
+
} & { [K_37 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2421
|
+
body?: string;
|
|
2422
|
+
responseBody?: string;
|
|
2423
|
+
additionalBindings?: {
|
|
2424
|
+
selector?: string;
|
|
2425
|
+
get?: string | undefined;
|
|
2426
|
+
put?: string | undefined;
|
|
2427
|
+
post?: string | undefined;
|
|
2428
|
+
delete?: string | undefined;
|
|
2429
|
+
patch?: string | undefined;
|
|
2430
|
+
custom?: {
|
|
2431
|
+
kind?: string;
|
|
2432
|
+
path?: string;
|
|
2433
|
+
};
|
|
2434
|
+
body?: string;
|
|
2435
|
+
responseBody?: string;
|
|
2436
|
+
additionalBindings?: any[];
|
|
2437
|
+
}[] & ({
|
|
2438
|
+
selector?: string;
|
|
2439
|
+
get?: string | undefined;
|
|
2440
|
+
put?: string | undefined;
|
|
2441
|
+
post?: string | undefined;
|
|
2442
|
+
delete?: string | undefined;
|
|
2443
|
+
patch?: string | undefined;
|
|
2444
|
+
custom?: {
|
|
2445
|
+
kind?: string;
|
|
2446
|
+
path?: string;
|
|
2447
|
+
};
|
|
2448
|
+
body?: string;
|
|
2449
|
+
responseBody?: string;
|
|
2450
|
+
additionalBindings?: any[];
|
|
2451
|
+
} & {
|
|
2452
|
+
selector?: string;
|
|
2453
|
+
get?: string | undefined;
|
|
2454
|
+
put?: string | undefined;
|
|
2455
|
+
post?: string | undefined;
|
|
2456
|
+
delete?: string | undefined;
|
|
2457
|
+
patch?: string | undefined;
|
|
2458
|
+
custom?: {
|
|
2459
|
+
kind?: string;
|
|
2460
|
+
path?: string;
|
|
2461
|
+
} & {
|
|
2462
|
+
kind?: string;
|
|
2463
|
+
path?: string;
|
|
2464
|
+
} & { [K_38 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2465
|
+
body?: string;
|
|
2466
|
+
responseBody?: string;
|
|
2467
|
+
additionalBindings?: {
|
|
2468
|
+
selector?: string;
|
|
2469
|
+
get?: string | undefined;
|
|
2470
|
+
put?: string | undefined;
|
|
2471
|
+
post?: string | undefined;
|
|
2472
|
+
delete?: string | undefined;
|
|
2473
|
+
patch?: string | undefined;
|
|
2474
|
+
custom?: {
|
|
2475
|
+
kind?: string;
|
|
2476
|
+
path?: string;
|
|
2477
|
+
};
|
|
2478
|
+
body?: string;
|
|
2479
|
+
responseBody?: string;
|
|
2480
|
+
additionalBindings?: any[];
|
|
2481
|
+
}[] & ({
|
|
2482
|
+
selector?: string;
|
|
2483
|
+
get?: string | undefined;
|
|
2484
|
+
put?: string | undefined;
|
|
2485
|
+
post?: string | undefined;
|
|
2486
|
+
delete?: string | undefined;
|
|
2487
|
+
patch?: string | undefined;
|
|
2488
|
+
custom?: {
|
|
2489
|
+
kind?: string;
|
|
2490
|
+
path?: string;
|
|
2491
|
+
};
|
|
2492
|
+
body?: string;
|
|
2493
|
+
responseBody?: string;
|
|
2494
|
+
additionalBindings?: any[];
|
|
2495
|
+
} & {
|
|
2496
|
+
selector?: string;
|
|
2497
|
+
get?: string | undefined;
|
|
2498
|
+
put?: string | undefined;
|
|
2499
|
+
post?: string | undefined;
|
|
2500
|
+
delete?: string | undefined;
|
|
2501
|
+
patch?: string | undefined;
|
|
2502
|
+
custom?: {
|
|
2503
|
+
kind?: string;
|
|
2504
|
+
path?: string;
|
|
2505
|
+
} & {
|
|
2506
|
+
kind?: string;
|
|
2507
|
+
path?: string;
|
|
2508
|
+
} & { [K_39 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2509
|
+
body?: string;
|
|
2510
|
+
responseBody?: string;
|
|
2511
|
+
additionalBindings?: {
|
|
2512
|
+
selector?: string;
|
|
2513
|
+
get?: string | undefined;
|
|
2514
|
+
put?: string | undefined;
|
|
2515
|
+
post?: string | undefined;
|
|
2516
|
+
delete?: string | undefined;
|
|
2517
|
+
patch?: string | undefined;
|
|
2518
|
+
custom?: {
|
|
2519
|
+
kind?: string;
|
|
2520
|
+
path?: string;
|
|
2521
|
+
};
|
|
2522
|
+
body?: string;
|
|
2523
|
+
responseBody?: string;
|
|
2524
|
+
additionalBindings?: any[];
|
|
2525
|
+
}[] & ({
|
|
2526
|
+
selector?: string;
|
|
2527
|
+
get?: string | undefined;
|
|
2528
|
+
put?: string | undefined;
|
|
2529
|
+
post?: string | undefined;
|
|
2530
|
+
delete?: string | undefined;
|
|
2531
|
+
patch?: string | undefined;
|
|
2532
|
+
custom?: {
|
|
2533
|
+
kind?: string;
|
|
2534
|
+
path?: string;
|
|
2535
|
+
};
|
|
2536
|
+
body?: string;
|
|
2537
|
+
responseBody?: string;
|
|
2538
|
+
additionalBindings?: any[];
|
|
2539
|
+
} & {
|
|
2540
|
+
selector?: string;
|
|
2541
|
+
get?: string | undefined;
|
|
2542
|
+
put?: string | undefined;
|
|
2543
|
+
post?: string | undefined;
|
|
2544
|
+
delete?: string | undefined;
|
|
2545
|
+
patch?: string | undefined;
|
|
2546
|
+
custom?: {
|
|
2547
|
+
kind?: string;
|
|
2548
|
+
path?: string;
|
|
2549
|
+
} & {
|
|
2550
|
+
kind?: string;
|
|
2551
|
+
path?: string;
|
|
2552
|
+
} & { [K_40 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2553
|
+
body?: string;
|
|
2554
|
+
responseBody?: string;
|
|
2555
|
+
additionalBindings?: {
|
|
2556
|
+
selector?: string;
|
|
2557
|
+
get?: string | undefined;
|
|
2558
|
+
put?: string | undefined;
|
|
2559
|
+
post?: string | undefined;
|
|
2560
|
+
delete?: string | undefined;
|
|
2561
|
+
patch?: string | undefined;
|
|
2562
|
+
custom?: {
|
|
2563
|
+
kind?: string;
|
|
2564
|
+
path?: string;
|
|
2565
|
+
};
|
|
2566
|
+
body?: string;
|
|
2567
|
+
responseBody?: string;
|
|
2568
|
+
additionalBindings?: any[];
|
|
2569
|
+
}[] & ({
|
|
2570
|
+
selector?: string;
|
|
2571
|
+
get?: string | undefined;
|
|
2572
|
+
put?: string | undefined;
|
|
2573
|
+
post?: string | undefined;
|
|
2574
|
+
delete?: string | undefined;
|
|
2575
|
+
patch?: string | undefined;
|
|
2576
|
+
custom?: {
|
|
2577
|
+
kind?: string;
|
|
2578
|
+
path?: string;
|
|
2579
|
+
};
|
|
2580
|
+
body?: string;
|
|
2581
|
+
responseBody?: string;
|
|
2582
|
+
additionalBindings?: any[];
|
|
2583
|
+
} & {
|
|
2584
|
+
selector?: string;
|
|
2585
|
+
get?: string | undefined;
|
|
2586
|
+
put?: string | undefined;
|
|
2587
|
+
post?: string | undefined;
|
|
2588
|
+
delete?: string | undefined;
|
|
2589
|
+
patch?: string | undefined;
|
|
2590
|
+
custom?: {
|
|
2591
|
+
kind?: string;
|
|
2592
|
+
path?: string;
|
|
2593
|
+
} & {
|
|
2594
|
+
kind?: string;
|
|
2595
|
+
path?: string;
|
|
2596
|
+
} & { [K_41 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2597
|
+
body?: string;
|
|
2598
|
+
responseBody?: string;
|
|
2599
|
+
additionalBindings?: {
|
|
2600
|
+
selector?: string;
|
|
2601
|
+
get?: string | undefined;
|
|
2602
|
+
put?: string | undefined;
|
|
2603
|
+
post?: string | undefined;
|
|
2604
|
+
delete?: string | undefined;
|
|
2605
|
+
patch?: string | undefined;
|
|
2606
|
+
custom?: {
|
|
2607
|
+
kind?: string;
|
|
2608
|
+
path?: string;
|
|
2609
|
+
};
|
|
2610
|
+
body?: string;
|
|
2611
|
+
responseBody?: string;
|
|
2612
|
+
additionalBindings?: any[];
|
|
2613
|
+
}[] & ({
|
|
2614
|
+
selector?: string;
|
|
2615
|
+
get?: string | undefined;
|
|
2616
|
+
put?: string | undefined;
|
|
2617
|
+
post?: string | undefined;
|
|
2618
|
+
delete?: string | undefined;
|
|
2619
|
+
patch?: string | undefined;
|
|
2620
|
+
custom?: {
|
|
2621
|
+
kind?: string;
|
|
2622
|
+
path?: string;
|
|
2623
|
+
};
|
|
2624
|
+
body?: string;
|
|
2625
|
+
responseBody?: string;
|
|
2626
|
+
additionalBindings?: any[];
|
|
2627
|
+
} & {
|
|
2628
|
+
selector?: string;
|
|
2629
|
+
get?: string | undefined;
|
|
2630
|
+
put?: string | undefined;
|
|
2631
|
+
post?: string | undefined;
|
|
2632
|
+
delete?: string | undefined;
|
|
2633
|
+
patch?: string | undefined;
|
|
2634
|
+
custom?: {
|
|
2635
|
+
kind?: string;
|
|
2636
|
+
path?: string;
|
|
2637
|
+
} & {
|
|
2638
|
+
kind?: string;
|
|
2639
|
+
path?: string;
|
|
2640
|
+
} & { [K_42 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2641
|
+
body?: string;
|
|
2642
|
+
responseBody?: string;
|
|
2643
|
+
additionalBindings?: {
|
|
2644
|
+
selector?: string;
|
|
2645
|
+
get?: string | undefined;
|
|
2646
|
+
put?: string | undefined;
|
|
2647
|
+
post?: string | undefined;
|
|
2648
|
+
delete?: string | undefined;
|
|
2649
|
+
patch?: string | undefined;
|
|
2650
|
+
custom?: {
|
|
2651
|
+
kind?: string;
|
|
2652
|
+
path?: string;
|
|
2653
|
+
};
|
|
2654
|
+
body?: string;
|
|
2655
|
+
responseBody?: string;
|
|
2656
|
+
additionalBindings?: any[];
|
|
2657
|
+
}[] & ({
|
|
2658
|
+
selector?: string;
|
|
2659
|
+
get?: string | undefined;
|
|
2660
|
+
put?: string | undefined;
|
|
2661
|
+
post?: string | undefined;
|
|
2662
|
+
delete?: string | undefined;
|
|
2663
|
+
patch?: string | undefined;
|
|
2664
|
+
custom?: {
|
|
2665
|
+
kind?: string;
|
|
2666
|
+
path?: string;
|
|
2667
|
+
};
|
|
2668
|
+
body?: string;
|
|
2669
|
+
responseBody?: string;
|
|
2670
|
+
additionalBindings?: any[];
|
|
2671
|
+
} & {
|
|
2672
|
+
selector?: string;
|
|
2673
|
+
get?: string | undefined;
|
|
2674
|
+
put?: string | undefined;
|
|
2675
|
+
post?: string | undefined;
|
|
2676
|
+
delete?: string | undefined;
|
|
2677
|
+
patch?: string | undefined;
|
|
2678
|
+
custom?: {
|
|
2679
|
+
kind?: string;
|
|
2680
|
+
path?: string;
|
|
2681
|
+
} & {
|
|
2682
|
+
kind?: string;
|
|
2683
|
+
path?: string;
|
|
2684
|
+
} & { [K_43 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2685
|
+
body?: string;
|
|
2686
|
+
responseBody?: string;
|
|
2687
|
+
additionalBindings?: {
|
|
2688
|
+
selector?: string;
|
|
2689
|
+
get?: string | undefined;
|
|
2690
|
+
put?: string | undefined;
|
|
2691
|
+
post?: string | undefined;
|
|
2692
|
+
delete?: string | undefined;
|
|
2693
|
+
patch?: string | undefined;
|
|
2694
|
+
custom?: {
|
|
2695
|
+
kind?: string;
|
|
2696
|
+
path?: string;
|
|
2697
|
+
};
|
|
2698
|
+
body?: string;
|
|
2699
|
+
responseBody?: string;
|
|
2700
|
+
additionalBindings?: any[];
|
|
2701
|
+
}[] & ({
|
|
2702
|
+
selector?: string;
|
|
2703
|
+
get?: string | undefined;
|
|
2704
|
+
put?: string | undefined;
|
|
2705
|
+
post?: string | undefined;
|
|
2706
|
+
delete?: string | undefined;
|
|
2707
|
+
patch?: string | undefined;
|
|
2708
|
+
custom?: {
|
|
2709
|
+
kind?: string;
|
|
2710
|
+
path?: string;
|
|
2711
|
+
};
|
|
2712
|
+
body?: string;
|
|
2713
|
+
responseBody?: string;
|
|
2714
|
+
additionalBindings?: any[];
|
|
2715
|
+
} & {
|
|
2716
|
+
selector?: string;
|
|
2717
|
+
get?: string | undefined;
|
|
2718
|
+
put?: string | undefined;
|
|
2719
|
+
post?: string | undefined;
|
|
2720
|
+
delete?: string | undefined;
|
|
2721
|
+
patch?: string | undefined;
|
|
2722
|
+
custom?: {
|
|
2723
|
+
kind?: string;
|
|
2724
|
+
path?: string;
|
|
2725
|
+
} & any & { [K_44 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["custom"], keyof CustomHttpPattern>]: never; };
|
|
2726
|
+
body?: string;
|
|
2727
|
+
responseBody?: string;
|
|
2728
|
+
additionalBindings?: {
|
|
2729
|
+
selector?: string;
|
|
2730
|
+
get?: string | undefined;
|
|
2731
|
+
put?: string | undefined;
|
|
2732
|
+
post?: string | undefined;
|
|
2733
|
+
delete?: string | undefined;
|
|
2734
|
+
patch?: string | undefined;
|
|
2735
|
+
custom?: {
|
|
2736
|
+
kind?: string;
|
|
2737
|
+
path?: string;
|
|
2738
|
+
};
|
|
2739
|
+
body?: string;
|
|
2740
|
+
responseBody?: string;
|
|
2741
|
+
additionalBindings?: any[];
|
|
2742
|
+
}[] & ({
|
|
2743
|
+
selector?: string;
|
|
2744
|
+
get?: string | undefined;
|
|
2745
|
+
put?: string | undefined;
|
|
2746
|
+
post?: string | undefined;
|
|
2747
|
+
delete?: string | undefined;
|
|
2748
|
+
patch?: string | undefined;
|
|
2749
|
+
custom?: {
|
|
2750
|
+
kind?: string;
|
|
2751
|
+
path?: string;
|
|
2752
|
+
};
|
|
2753
|
+
body?: string;
|
|
2754
|
+
responseBody?: string;
|
|
2755
|
+
additionalBindings?: any[];
|
|
2756
|
+
} & any & { [K_45 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_46 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2757
|
+
selector?: string;
|
|
2758
|
+
get?: string | undefined;
|
|
2759
|
+
put?: string | undefined;
|
|
2760
|
+
post?: string | undefined;
|
|
2761
|
+
delete?: string | undefined;
|
|
2762
|
+
patch?: string | undefined;
|
|
2763
|
+
custom?: {
|
|
2764
|
+
kind?: string;
|
|
2765
|
+
path?: string;
|
|
2766
|
+
};
|
|
2767
|
+
body?: string;
|
|
2768
|
+
responseBody?: string;
|
|
2769
|
+
additionalBindings?: any[];
|
|
2770
|
+
}[]>]: never; };
|
|
2771
|
+
} & { [K_47 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_48 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2772
|
+
selector?: string;
|
|
2773
|
+
get?: string | undefined;
|
|
2774
|
+
put?: string | undefined;
|
|
2775
|
+
post?: string | undefined;
|
|
2776
|
+
delete?: string | undefined;
|
|
2777
|
+
patch?: string | undefined;
|
|
2778
|
+
custom?: {
|
|
2779
|
+
kind?: string;
|
|
2780
|
+
path?: string;
|
|
2781
|
+
};
|
|
2782
|
+
body?: string;
|
|
2783
|
+
responseBody?: string;
|
|
2784
|
+
additionalBindings?: any[];
|
|
2785
|
+
}[]>]: never; };
|
|
2786
|
+
} & { [K_49 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_50 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2787
|
+
selector?: string;
|
|
2788
|
+
get?: string | undefined;
|
|
2789
|
+
put?: string | undefined;
|
|
2790
|
+
post?: string | undefined;
|
|
2791
|
+
delete?: string | undefined;
|
|
2792
|
+
patch?: string | undefined;
|
|
2793
|
+
custom?: {
|
|
2794
|
+
kind?: string;
|
|
2795
|
+
path?: string;
|
|
2796
|
+
};
|
|
2797
|
+
body?: string;
|
|
2798
|
+
responseBody?: string;
|
|
2799
|
+
additionalBindings?: any[];
|
|
2800
|
+
}[]>]: never; };
|
|
2801
|
+
} & { [K_51 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_52 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2802
|
+
selector?: string;
|
|
2803
|
+
get?: string | undefined;
|
|
2804
|
+
put?: string | undefined;
|
|
2805
|
+
post?: string | undefined;
|
|
2806
|
+
delete?: string | undefined;
|
|
2807
|
+
patch?: string | undefined;
|
|
2808
|
+
custom?: {
|
|
2809
|
+
kind?: string;
|
|
2810
|
+
path?: string;
|
|
2811
|
+
};
|
|
2812
|
+
body?: string;
|
|
2813
|
+
responseBody?: string;
|
|
2814
|
+
additionalBindings?: any[];
|
|
2815
|
+
}[]>]: never; };
|
|
2816
|
+
} & { [K_53 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_54 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2817
|
+
selector?: string;
|
|
2818
|
+
get?: string | undefined;
|
|
2819
|
+
put?: string | undefined;
|
|
2820
|
+
post?: string | undefined;
|
|
2821
|
+
delete?: string | undefined;
|
|
2822
|
+
patch?: string | undefined;
|
|
2823
|
+
custom?: {
|
|
2824
|
+
kind?: string;
|
|
2825
|
+
path?: string;
|
|
2826
|
+
};
|
|
2827
|
+
body?: string;
|
|
2828
|
+
responseBody?: string;
|
|
2829
|
+
additionalBindings?: any[];
|
|
2830
|
+
}[]>]: never; };
|
|
2831
|
+
} & { [K_55 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_56 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2832
|
+
selector?: string;
|
|
2833
|
+
get?: string | undefined;
|
|
2834
|
+
put?: string | undefined;
|
|
2835
|
+
post?: string | undefined;
|
|
2836
|
+
delete?: string | undefined;
|
|
2837
|
+
patch?: string | undefined;
|
|
2838
|
+
custom?: {
|
|
2839
|
+
kind?: string;
|
|
2840
|
+
path?: string;
|
|
2841
|
+
};
|
|
2842
|
+
body?: string;
|
|
2843
|
+
responseBody?: string;
|
|
2844
|
+
additionalBindings?: any[];
|
|
2845
|
+
}[]>]: never; };
|
|
2846
|
+
} & { [K_57 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_58 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2847
|
+
selector?: string;
|
|
2848
|
+
get?: string | undefined;
|
|
2849
|
+
put?: string | undefined;
|
|
2850
|
+
post?: string | undefined;
|
|
2851
|
+
delete?: string | undefined;
|
|
2852
|
+
patch?: string | undefined;
|
|
2853
|
+
custom?: {
|
|
2854
|
+
kind?: string;
|
|
2855
|
+
path?: string;
|
|
2856
|
+
};
|
|
2857
|
+
body?: string;
|
|
2858
|
+
responseBody?: string;
|
|
2859
|
+
additionalBindings?: any[];
|
|
2860
|
+
}[]>]: never; };
|
|
2861
|
+
} & { [K_59 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_60 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2862
|
+
selector?: string;
|
|
2863
|
+
get?: string | undefined;
|
|
2864
|
+
put?: string | undefined;
|
|
2865
|
+
post?: string | undefined;
|
|
2866
|
+
delete?: string | undefined;
|
|
2867
|
+
patch?: string | undefined;
|
|
2868
|
+
custom?: {
|
|
2869
|
+
kind?: string;
|
|
2870
|
+
path?: string;
|
|
2871
|
+
};
|
|
2872
|
+
body?: string;
|
|
2873
|
+
responseBody?: string;
|
|
2874
|
+
additionalBindings?: any[];
|
|
2875
|
+
}[]>]: never; };
|
|
2876
|
+
} & { [K_61 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_62 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2877
|
+
selector?: string;
|
|
2878
|
+
get?: string | undefined;
|
|
2879
|
+
put?: string | undefined;
|
|
2880
|
+
post?: string | undefined;
|
|
2881
|
+
delete?: string | undefined;
|
|
2882
|
+
patch?: string | undefined;
|
|
2883
|
+
custom?: {
|
|
2884
|
+
kind?: string;
|
|
2885
|
+
path?: string;
|
|
2886
|
+
};
|
|
2887
|
+
body?: string;
|
|
2888
|
+
responseBody?: string;
|
|
2889
|
+
additionalBindings?: any[];
|
|
2890
|
+
}[]>]: never; };
|
|
2891
|
+
} & { [K_63 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_64 in Exclude<keyof I_1["additionalBindings"][number]["additionalBindings"], keyof {
|
|
2892
|
+
selector?: string;
|
|
2893
|
+
get?: string | undefined;
|
|
2894
|
+
put?: string | undefined;
|
|
2895
|
+
post?: string | undefined;
|
|
2896
|
+
delete?: string | undefined;
|
|
2897
|
+
patch?: string | undefined;
|
|
2898
|
+
custom?: {
|
|
2899
|
+
kind?: string;
|
|
2900
|
+
path?: string;
|
|
2901
|
+
};
|
|
2902
|
+
body?: string;
|
|
2903
|
+
responseBody?: string;
|
|
2904
|
+
additionalBindings?: any[];
|
|
2905
|
+
}[]>]: never; };
|
|
2906
|
+
} & { [K_65 in Exclude<keyof I_1["additionalBindings"][number], keyof HttpRule>]: never; })[] & { [K_66 in Exclude<keyof I_1["additionalBindings"], keyof {
|
|
2907
|
+
selector?: string;
|
|
2908
|
+
get?: string | undefined;
|
|
2909
|
+
put?: string | undefined;
|
|
2910
|
+
post?: string | undefined;
|
|
2911
|
+
delete?: string | undefined;
|
|
2912
|
+
patch?: string | undefined;
|
|
2913
|
+
custom?: {
|
|
2914
|
+
kind?: string;
|
|
2915
|
+
path?: string;
|
|
2916
|
+
};
|
|
2917
|
+
body?: string;
|
|
2918
|
+
responseBody?: string;
|
|
2919
|
+
additionalBindings?: any[];
|
|
2920
|
+
}[]>]: never; };
|
|
2921
|
+
} & { [K_67 in Exclude<keyof I_1, keyof HttpRule>]: never; }>(object: I_1): HttpRule;
|
|
2922
|
+
};
|
|
2923
|
+
export declare const CustomHttpPattern: {
|
|
2924
|
+
encode(message: CustomHttpPattern, writer?: _m0.Writer): _m0.Writer;
|
|
2925
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CustomHttpPattern;
|
|
2926
|
+
fromJSON(object: any): CustomHttpPattern;
|
|
2927
|
+
toJSON(message: CustomHttpPattern): unknown;
|
|
2928
|
+
create<I extends {
|
|
2929
|
+
kind?: string;
|
|
2930
|
+
path?: string;
|
|
2931
|
+
} & {
|
|
2932
|
+
kind?: string;
|
|
2933
|
+
path?: string;
|
|
2934
|
+
} & { [K in Exclude<keyof I, keyof CustomHttpPattern>]: never; }>(base?: I): CustomHttpPattern;
|
|
2935
|
+
fromPartial<I_1 extends {
|
|
2936
|
+
kind?: string;
|
|
2937
|
+
path?: string;
|
|
2938
|
+
} & {
|
|
2939
|
+
kind?: string;
|
|
2940
|
+
path?: string;
|
|
2941
|
+
} & { [K_1 in Exclude<keyof I_1, keyof CustomHttpPattern>]: never; }>(object: I_1): CustomHttpPattern;
|
|
2942
|
+
};
|
|
2943
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
2944
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
2945
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
2946
|
+
} : Partial<T>;
|
|
2947
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
2948
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
2949
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
2950
|
+
} & {
|
|
2951
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
2952
|
+
};
|
|
2953
|
+
export {};
|