@pushwoosh/rpc-v2-http-api-data 0.1.737 → 0.1.739
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/data.js +88 -0
- package/package.json +1 -1
- package/tags.d.ts +29 -0
package/data.js
CHANGED
|
@@ -22032,6 +22032,12 @@ export const data = {
|
|
|
22032
22032
|
"response": "pushwoosh.rpc_v2.tags.GetTagValuesResponse",
|
|
22033
22033
|
"method": "get",
|
|
22034
22034
|
"path": "/api/tags:values"
|
|
22035
|
+
},
|
|
22036
|
+
"GetTagUsage": {
|
|
22037
|
+
"request": "pushwoosh.rpc_v2.tags.GetTagUsageRequest",
|
|
22038
|
+
"response": "pushwoosh.rpc_v2.tags.GetTagUsageResponse",
|
|
22039
|
+
"method": "get",
|
|
22040
|
+
"path": "/api/tags/{name}:get-tag-usage"
|
|
22035
22041
|
}
|
|
22036
22042
|
}
|
|
22037
22043
|
},
|
|
@@ -22246,6 +22252,88 @@ export const data = {
|
|
|
22246
22252
|
}
|
|
22247
22253
|
}
|
|
22248
22254
|
},
|
|
22255
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageRequest": {
|
|
22256
|
+
"type": "I",
|
|
22257
|
+
"fields": {
|
|
22258
|
+
"name": {
|
|
22259
|
+
"type": "string"
|
|
22260
|
+
}
|
|
22261
|
+
}
|
|
22262
|
+
},
|
|
22263
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageResponse.Journey": {
|
|
22264
|
+
"type": "I",
|
|
22265
|
+
"fields": {
|
|
22266
|
+
"uuid": {
|
|
22267
|
+
"type": "string"
|
|
22268
|
+
},
|
|
22269
|
+
"title": {
|
|
22270
|
+
"type": "string"
|
|
22271
|
+
},
|
|
22272
|
+
"status": {
|
|
22273
|
+
"type": "number"
|
|
22274
|
+
}
|
|
22275
|
+
}
|
|
22276
|
+
},
|
|
22277
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageResponse.Inapp": {
|
|
22278
|
+
"type": "I",
|
|
22279
|
+
"fields": {
|
|
22280
|
+
"code": {
|
|
22281
|
+
"type": "string"
|
|
22282
|
+
},
|
|
22283
|
+
"name": {
|
|
22284
|
+
"type": "string"
|
|
22285
|
+
},
|
|
22286
|
+
"status": {
|
|
22287
|
+
"type": "string"
|
|
22288
|
+
}
|
|
22289
|
+
}
|
|
22290
|
+
},
|
|
22291
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageResponse.Autopush": {
|
|
22292
|
+
"type": "I",
|
|
22293
|
+
"fields": {
|
|
22294
|
+
"code": {
|
|
22295
|
+
"type": "string"
|
|
22296
|
+
},
|
|
22297
|
+
"name": {
|
|
22298
|
+
"type": "string"
|
|
22299
|
+
},
|
|
22300
|
+
"status": {
|
|
22301
|
+
"type": "boolean"
|
|
22302
|
+
}
|
|
22303
|
+
}
|
|
22304
|
+
},
|
|
22305
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageResponse.Filter": {
|
|
22306
|
+
"type": "I",
|
|
22307
|
+
"fields": {
|
|
22308
|
+
"code": {
|
|
22309
|
+
"type": "string"
|
|
22310
|
+
},
|
|
22311
|
+
"name": {
|
|
22312
|
+
"type": "string"
|
|
22313
|
+
}
|
|
22314
|
+
}
|
|
22315
|
+
},
|
|
22316
|
+
"pushwoosh.rpc_v2.tags.GetTagUsageResponse": {
|
|
22317
|
+
"type": "I",
|
|
22318
|
+
"fields": {
|
|
22319
|
+
"journeys": {
|
|
22320
|
+
"type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Journey",
|
|
22321
|
+
"array": true
|
|
22322
|
+
},
|
|
22323
|
+
"inapps": {
|
|
22324
|
+
"type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Inapp",
|
|
22325
|
+
"array": true
|
|
22326
|
+
},
|
|
22327
|
+
"autopushes": {
|
|
22328
|
+
"type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Autopush",
|
|
22329
|
+
"array": true
|
|
22330
|
+
},
|
|
22331
|
+
"filters": {
|
|
22332
|
+
"type": "pushwoosh.rpc_v2.tags.GetTagUsageResponse.Filter",
|
|
22333
|
+
"array": true
|
|
22334
|
+
}
|
|
22335
|
+
}
|
|
22336
|
+
},
|
|
22249
22337
|
"pushwoosh.rpc_v2.test_devices.TestDevicesService": {
|
|
22250
22338
|
"type": "S",
|
|
22251
22339
|
"key": "testDevices",
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export interface TagsService {
|
|
|
4
4
|
Delete(request: DeleteTagRequest): Promise<DeleteTagResponse>;
|
|
5
5
|
List(request: ListTagsRequest): Promise<ListTagsResponse>;
|
|
6
6
|
GetTagValues(request: GetTagValuesRequest): Promise<GetTagValuesResponse>;
|
|
7
|
+
GetTagUsage(request: GetTagUsageRequest): Promise<GetTagUsageResponse>;
|
|
7
8
|
}
|
|
8
9
|
export type GetTagRequest = {
|
|
9
10
|
name?: string;
|
|
@@ -67,3 +68,31 @@ export type GetTagValuesResponse_TagValue = {
|
|
|
67
68
|
export type GetTagValuesResponse = {
|
|
68
69
|
values: GetTagValuesResponse_TagValue[];
|
|
69
70
|
};
|
|
71
|
+
export type GetTagUsageRequest = {
|
|
72
|
+
name?: string;
|
|
73
|
+
};
|
|
74
|
+
export type GetTagUsageResponse_Journey = {
|
|
75
|
+
uuid: string;
|
|
76
|
+
title: string;
|
|
77
|
+
status: number;
|
|
78
|
+
};
|
|
79
|
+
export type GetTagUsageResponse_Inapp = {
|
|
80
|
+
code: string;
|
|
81
|
+
name: string;
|
|
82
|
+
status: string;
|
|
83
|
+
};
|
|
84
|
+
export type GetTagUsageResponse_Autopush = {
|
|
85
|
+
code: string;
|
|
86
|
+
name: string;
|
|
87
|
+
status: boolean;
|
|
88
|
+
};
|
|
89
|
+
export type GetTagUsageResponse_Filter = {
|
|
90
|
+
code: string;
|
|
91
|
+
name: string;
|
|
92
|
+
};
|
|
93
|
+
export type GetTagUsageResponse = {
|
|
94
|
+
journeys: GetTagUsageResponse_Journey[];
|
|
95
|
+
inapps: GetTagUsageResponse_Inapp[];
|
|
96
|
+
autopushes: GetTagUsageResponse_Autopush[];
|
|
97
|
+
filters: GetTagUsageResponse_Filter[];
|
|
98
|
+
};
|