@pushwoosh/rpc-gateway-journey-data 0.26.206

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.
@@ -0,0 +1,40 @@
1
+ export type Http = {
2
+ rules: HttpRule[];
3
+ fullyDecodeReservedExpansion: boolean;
4
+ };
5
+ export type HttpRule_pattern_get = {
6
+ type: 'get';
7
+ data: string;
8
+ };
9
+ export type HttpRule_pattern_put = {
10
+ type: 'put';
11
+ data: string;
12
+ };
13
+ export type HttpRule_pattern_post = {
14
+ type: 'post';
15
+ data: string;
16
+ };
17
+ export type HttpRule_pattern_delete = {
18
+ type: 'delete';
19
+ data: string;
20
+ };
21
+ export type HttpRule_pattern_patch = {
22
+ type: 'patch';
23
+ data: string;
24
+ };
25
+ export type HttpRule_pattern_custom = {
26
+ type: 'custom';
27
+ data: CustomHttpPattern;
28
+ };
29
+ export type HttpRule_pattern = HttpRule_pattern_get | HttpRule_pattern_put | HttpRule_pattern_post | HttpRule_pattern_delete | HttpRule_pattern_patch | HttpRule_pattern_custom;
30
+ export type HttpRule = {
31
+ selector: string;
32
+ body: string;
33
+ responseBody: string;
34
+ additionalBindings: HttpRule[];
35
+ pattern: HttpRule_pattern;
36
+ };
37
+ export type CustomHttpPattern = {
38
+ kind: string;
39
+ path: string;
40
+ };
package/google_api.js ADDED
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export {};
@@ -0,0 +1,255 @@
1
+ export type Any = {
2
+ typeUrl: string;
3
+ value: string;
4
+ };
5
+ export type FileDescriptorSet = {
6
+ file: FileDescriptorProto[];
7
+ };
8
+ export type FileDescriptorProto = {
9
+ name: string;
10
+ package: string;
11
+ dependency: string[];
12
+ publicDependency: number[];
13
+ weakDependency: number[];
14
+ messageType: DescriptorProto[];
15
+ enumType: EnumDescriptorProto[];
16
+ service: ServiceDescriptorProto[];
17
+ extension: FieldDescriptorProto[];
18
+ options: FileOptions;
19
+ sourceCodeInfo: SourceCodeInfo;
20
+ syntax: string;
21
+ };
22
+ export type DescriptorProto_ExtensionRange = {
23
+ start: number;
24
+ end: number;
25
+ options: ExtensionRangeOptions;
26
+ };
27
+ export type DescriptorProto_ReservedRange = {
28
+ start: number;
29
+ end: number;
30
+ };
31
+ export type DescriptorProto = {
32
+ name: string;
33
+ field: FieldDescriptorProto[];
34
+ extension: FieldDescriptorProto[];
35
+ nestedType: DescriptorProto[];
36
+ enumType: EnumDescriptorProto[];
37
+ extensionRange: DescriptorProto_ExtensionRange[];
38
+ oneofDecl: OneofDescriptorProto[];
39
+ options: MessageOptions;
40
+ reservedRange: DescriptorProto_ReservedRange[];
41
+ reservedName: string[];
42
+ };
43
+ export type ExtensionRangeOptions = {
44
+ uninterpretedOption: UninterpretedOption[];
45
+ };
46
+ export type FieldDescriptorProto_Type = 'TYPE_DOUBLE' | 'TYPE_FLOAT' | 'TYPE_INT64' | 'TYPE_UINT64' | 'TYPE_INT32' | 'TYPE_FIXED64' | 'TYPE_FIXED32' | 'TYPE_BOOL' | 'TYPE_STRING' | 'TYPE_GROUP' | 'TYPE_MESSAGE' | 'TYPE_BYTES' | 'TYPE_UINT32' | 'TYPE_ENUM' | 'TYPE_SFIXED32' | 'TYPE_SFIXED64' | 'TYPE_SINT32' | 'TYPE_SINT64';
47
+ export type FieldDescriptorProto_Label = 'LABEL_OPTIONAL' | 'LABEL_REQUIRED' | 'LABEL_REPEATED';
48
+ export type FieldDescriptorProto = {
49
+ name: string;
50
+ number: number;
51
+ label: FieldDescriptorProto_Label;
52
+ type: FieldDescriptorProto_Type;
53
+ typeName: string;
54
+ extendee: string;
55
+ defaultValue: string;
56
+ oneofIndex: number;
57
+ jsonName: string;
58
+ options: FieldOptions;
59
+ };
60
+ export type OneofDescriptorProto = {
61
+ name: string;
62
+ options: OneofOptions;
63
+ };
64
+ export type EnumDescriptorProto_EnumReservedRange = {
65
+ start: number;
66
+ end: number;
67
+ };
68
+ export type EnumDescriptorProto = {
69
+ name: string;
70
+ value: EnumValueDescriptorProto[];
71
+ options: EnumOptions;
72
+ reservedRange: EnumDescriptorProto_EnumReservedRange[];
73
+ reservedName: string[];
74
+ };
75
+ export type EnumValueDescriptorProto = {
76
+ name: string;
77
+ number: number;
78
+ options: EnumValueOptions;
79
+ };
80
+ export type ServiceDescriptorProto = {
81
+ name: string;
82
+ method: MethodDescriptorProto[];
83
+ options: ServiceOptions;
84
+ };
85
+ export type MethodDescriptorProto = {
86
+ name: string;
87
+ inputType: string;
88
+ outputType: string;
89
+ options: MethodOptions;
90
+ clientStreaming: boolean;
91
+ serverStreaming: boolean;
92
+ };
93
+ export type FileOptions_OptimizeMode = 'SPEED' | 'CODE_SIZE' | 'LITE_RUNTIME';
94
+ export type FileOptions = {
95
+ javaPackage: string;
96
+ javaOuterClassname: string;
97
+ javaMultipleFiles: boolean;
98
+ javaGenerateEqualsAndHash: boolean;
99
+ javaStringCheckUtf8: boolean;
100
+ optimizeFor: FileOptions_OptimizeMode;
101
+ goPackage: string;
102
+ ccGenericServices: boolean;
103
+ javaGenericServices: boolean;
104
+ pyGenericServices: boolean;
105
+ phpGenericServices: boolean;
106
+ deprecated: boolean;
107
+ ccEnableArenas: boolean;
108
+ objcClassPrefix: string;
109
+ csharpNamespace: string;
110
+ swiftPrefix: string;
111
+ phpClassPrefix: string;
112
+ phpNamespace: string;
113
+ phpMetadataNamespace: string;
114
+ rubyPackage: string;
115
+ uninterpretedOption: UninterpretedOption[];
116
+ };
117
+ export type MessageOptions = {
118
+ messageSetWireFormat: boolean;
119
+ noStandardDescriptorAccessor: boolean;
120
+ deprecated: boolean;
121
+ mapEntry: boolean;
122
+ uninterpretedOption: UninterpretedOption[];
123
+ };
124
+ export type FieldOptions_CType = 'STRING' | 'CORD' | 'STRING_PIECE';
125
+ export type FieldOptions_JSType = 'JS_NORMAL' | 'JS_STRING' | 'JS_NUMBER';
126
+ export type FieldOptions = {
127
+ ctype: FieldOptions_CType;
128
+ packed: boolean;
129
+ jstype: FieldOptions_JSType;
130
+ lazy: boolean;
131
+ deprecated: boolean;
132
+ weak: boolean;
133
+ uninterpretedOption: UninterpretedOption[];
134
+ };
135
+ export type OneofOptions = {
136
+ uninterpretedOption: UninterpretedOption[];
137
+ };
138
+ export type EnumOptions = {
139
+ allowAlias: boolean;
140
+ deprecated: boolean;
141
+ uninterpretedOption: UninterpretedOption[];
142
+ };
143
+ export type EnumValueOptions = {
144
+ deprecated: boolean;
145
+ uninterpretedOption: UninterpretedOption[];
146
+ };
147
+ export type ServiceOptions = {
148
+ deprecated: boolean;
149
+ uninterpretedOption: UninterpretedOption[];
150
+ };
151
+ export type MethodOptions_IdempotencyLevel = 'IDEMPOTENCY_UNKNOWN' | 'NO_SIDE_EFFECTS' | 'IDEMPOTENT';
152
+ export type MethodOptions = {
153
+ deprecated: boolean;
154
+ idempotencyLevel: MethodOptions_IdempotencyLevel;
155
+ uninterpretedOption: UninterpretedOption[];
156
+ };
157
+ export type UninterpretedOption_NamePart = {
158
+ namePart: string;
159
+ isExtension: boolean;
160
+ };
161
+ export type UninterpretedOption = {
162
+ name: UninterpretedOption_NamePart[];
163
+ identifierValue: string;
164
+ positiveIntValue: number;
165
+ negativeIntValue: number;
166
+ doubleValue: number;
167
+ stringValue: string;
168
+ aggregateValue: string;
169
+ };
170
+ export type SourceCodeInfo_Location = {
171
+ path: number[];
172
+ span: number[];
173
+ leadingComments: string;
174
+ trailingComments: string;
175
+ leadingDetachedComments: string[];
176
+ };
177
+ export type SourceCodeInfo = {
178
+ location: SourceCodeInfo_Location[];
179
+ };
180
+ export type GeneratedCodeInfo_Annotation = {
181
+ path: number[];
182
+ sourceFile: string;
183
+ begin: number;
184
+ end: number;
185
+ };
186
+ export type GeneratedCodeInfo = {
187
+ annotation: GeneratedCodeInfo_Annotation[];
188
+ };
189
+ export type Empty = {};
190
+ export type Struct = {
191
+ fields: Record<string, Value>;
192
+ };
193
+ export type Value_kind_nullValue = {
194
+ type: 'nullValue';
195
+ data: NullValue;
196
+ };
197
+ export type Value_kind_numberValue = {
198
+ type: 'numberValue';
199
+ data: number;
200
+ };
201
+ export type Value_kind_stringValue = {
202
+ type: 'stringValue';
203
+ data: string;
204
+ };
205
+ export type Value_kind_boolValue = {
206
+ type: 'boolValue';
207
+ data: boolean;
208
+ };
209
+ export type Value_kind_structValue = {
210
+ type: 'structValue';
211
+ data: Struct;
212
+ };
213
+ export type Value_kind_listValue = {
214
+ type: 'listValue';
215
+ data: ListValue;
216
+ };
217
+ export type Value_kind = Value_kind_nullValue | Value_kind_numberValue | Value_kind_stringValue | Value_kind_boolValue | Value_kind_structValue | Value_kind_listValue;
218
+ export type Value = {
219
+ kind: Value_kind;
220
+ };
221
+ export type NullValue = 'NULL_VALUE';
222
+ export type ListValue = {
223
+ values: Value[];
224
+ };
225
+ export type Timestamp = {
226
+ seconds: number;
227
+ nanos: number;
228
+ };
229
+ export type DoubleValue = {
230
+ value: number;
231
+ };
232
+ export type FloatValue = {
233
+ value: number;
234
+ };
235
+ export type Int64Value = {
236
+ value: number;
237
+ };
238
+ export type UInt64Value = {
239
+ value: number;
240
+ };
241
+ export type Int32Value = {
242
+ value: number;
243
+ };
244
+ export type UInt32Value = {
245
+ value: number;
246
+ };
247
+ export type BoolValue = {
248
+ value: boolean;
249
+ };
250
+ export type StringValue = {
251
+ value: string;
252
+ };
253
+ export type BytesValue = {
254
+ value: string;
255
+ };
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export {};
package/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import { Journey as pushwoosh_cj_journey_Journey } from './pushwoosh_cj_journey';
2
+ import { Category as pushwoosh_cj_journey_category_Category } from './pushwoosh_cj_journey_category';
3
+ export type API = {
4
+ journey: pushwoosh_cj_journey_Journey;
5
+ category: pushwoosh_cj_journey_category_Category;
6
+ };
7
+ export { data } from './data';
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export { data } from './data';
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@pushwoosh/rpc-gateway-journey-data",
3
+ "version": "0.26.206",
4
+ "description": "CJ api gateway HTTP API Types and Data",
5
+ "main": "index.js",
6
+ "module": "index.js",
7
+ "types": "index.d.js",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://https://gitlab.corp.pushwoosh.com/customer-journey/api-gateway"
12
+ },
13
+ "keywords": [
14
+ "RPC",
15
+ "Pushwoosh",
16
+ "API"
17
+ ],
18
+ "author": "Pushwoosh"
19
+ }