@wundergraph/cosmo-connect 0.72.0 → 0.72.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/dist/platform/v1/platform-PlatformService_connectquery.d.ts +35 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +35 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +23 -1
- package/dist/platform/v1/platform_connect.js +23 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +102 -2
- package/dist/platform/v1/platform_pb.js +164 -4
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1337,6 +1337,10 @@ export declare class GetSubgraphsRequest extends Message<GetSubgraphsRequest> {
|
|
|
1337
1337
|
* @generated from field: string namespace = 3;
|
|
1338
1338
|
*/
|
|
1339
1339
|
namespace: string;
|
|
1340
|
+
/**
|
|
1341
|
+
* @generated from field: optional string query = 4;
|
|
1342
|
+
*/
|
|
1343
|
+
query?: string;
|
|
1340
1344
|
constructor(data?: PartialMessage<GetSubgraphsRequest>);
|
|
1341
1345
|
static readonly runtime: typeof proto3;
|
|
1342
1346
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphsRequest";
|
|
@@ -1419,6 +1423,10 @@ export declare class GetSubgraphsResponse extends Message<GetSubgraphsResponse>
|
|
|
1419
1423
|
* @generated from field: repeated wg.cosmo.platform.v1.Subgraph graphs = 2;
|
|
1420
1424
|
*/
|
|
1421
1425
|
graphs: Subgraph[];
|
|
1426
|
+
/**
|
|
1427
|
+
* @generated from field: int32 count = 3;
|
|
1428
|
+
*/
|
|
1429
|
+
count: number;
|
|
1422
1430
|
constructor(data?: PartialMessage<GetSubgraphsResponse>);
|
|
1423
1431
|
static readonly runtime: typeof proto3;
|
|
1424
1432
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphsResponse";
|
|
@@ -3108,10 +3116,64 @@ export declare class PendingOrgInvitation extends Message<PendingOrgInvitation>
|
|
|
3108
3116
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PendingOrgInvitation;
|
|
3109
3117
|
static equals(a: PendingOrgInvitation | PlainMessage<PendingOrgInvitation> | undefined, b: PendingOrgInvitation | PlainMessage<PendingOrgInvitation> | undefined): boolean;
|
|
3110
3118
|
}
|
|
3119
|
+
/**
|
|
3120
|
+
* @generated from message wg.cosmo.platform.v1.GetPendingOrganizationMembersRequest
|
|
3121
|
+
*/
|
|
3122
|
+
export declare class GetPendingOrganizationMembersRequest extends Message<GetPendingOrganizationMembersRequest> {
|
|
3123
|
+
/**
|
|
3124
|
+
* @generated from field: wg.cosmo.platform.v1.Pagination pagination = 1;
|
|
3125
|
+
*/
|
|
3126
|
+
pagination?: Pagination;
|
|
3127
|
+
/**
|
|
3128
|
+
* @generated from field: optional string search = 2;
|
|
3129
|
+
*/
|
|
3130
|
+
search?: string;
|
|
3131
|
+
constructor(data?: PartialMessage<GetPendingOrganizationMembersRequest>);
|
|
3132
|
+
static readonly runtime: typeof proto3;
|
|
3133
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetPendingOrganizationMembersRequest";
|
|
3134
|
+
static readonly fields: FieldList;
|
|
3135
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPendingOrganizationMembersRequest;
|
|
3136
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPendingOrganizationMembersRequest;
|
|
3137
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPendingOrganizationMembersRequest;
|
|
3138
|
+
static equals(a: GetPendingOrganizationMembersRequest | PlainMessage<GetPendingOrganizationMembersRequest> | undefined, b: GetPendingOrganizationMembersRequest | PlainMessage<GetPendingOrganizationMembersRequest> | undefined): boolean;
|
|
3139
|
+
}
|
|
3140
|
+
/**
|
|
3141
|
+
* @generated from message wg.cosmo.platform.v1.GetPendingOrganizationMembersResponse
|
|
3142
|
+
*/
|
|
3143
|
+
export declare class GetPendingOrganizationMembersResponse extends Message<GetPendingOrganizationMembersResponse> {
|
|
3144
|
+
/**
|
|
3145
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
3146
|
+
*/
|
|
3147
|
+
response?: Response;
|
|
3148
|
+
/**
|
|
3149
|
+
* @generated from field: repeated wg.cosmo.platform.v1.PendingOrgInvitation pendingInvitations = 2;
|
|
3150
|
+
*/
|
|
3151
|
+
pendingInvitations: PendingOrgInvitation[];
|
|
3152
|
+
/**
|
|
3153
|
+
* @generated from field: int32 total_count = 3;
|
|
3154
|
+
*/
|
|
3155
|
+
totalCount: number;
|
|
3156
|
+
constructor(data?: PartialMessage<GetPendingOrganizationMembersResponse>);
|
|
3157
|
+
static readonly runtime: typeof proto3;
|
|
3158
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetPendingOrganizationMembersResponse";
|
|
3159
|
+
static readonly fields: FieldList;
|
|
3160
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPendingOrganizationMembersResponse;
|
|
3161
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPendingOrganizationMembersResponse;
|
|
3162
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPendingOrganizationMembersResponse;
|
|
3163
|
+
static equals(a: GetPendingOrganizationMembersResponse | PlainMessage<GetPendingOrganizationMembersResponse> | undefined, b: GetPendingOrganizationMembersResponse | PlainMessage<GetPendingOrganizationMembersResponse> | undefined): boolean;
|
|
3164
|
+
}
|
|
3111
3165
|
/**
|
|
3112
3166
|
* @generated from message wg.cosmo.platform.v1.GetOrganizationMembersRequest
|
|
3113
3167
|
*/
|
|
3114
3168
|
export declare class GetOrganizationMembersRequest extends Message<GetOrganizationMembersRequest> {
|
|
3169
|
+
/**
|
|
3170
|
+
* @generated from field: wg.cosmo.platform.v1.Pagination pagination = 1;
|
|
3171
|
+
*/
|
|
3172
|
+
pagination?: Pagination;
|
|
3173
|
+
/**
|
|
3174
|
+
* @generated from field: optional string search = 2;
|
|
3175
|
+
*/
|
|
3176
|
+
search?: string;
|
|
3115
3177
|
constructor(data?: PartialMessage<GetOrganizationMembersRequest>);
|
|
3116
3178
|
static readonly runtime: typeof proto3;
|
|
3117
3179
|
static readonly typeName = "wg.cosmo.platform.v1.GetOrganizationMembersRequest";
|
|
@@ -3134,9 +3196,9 @@ export declare class GetOrganizationMembersResponse extends Message<GetOrganizat
|
|
|
3134
3196
|
*/
|
|
3135
3197
|
members: OrgMember[];
|
|
3136
3198
|
/**
|
|
3137
|
-
* @generated from field:
|
|
3199
|
+
* @generated from field: int32 total_count = 3;
|
|
3138
3200
|
*/
|
|
3139
|
-
|
|
3201
|
+
totalCount: number;
|
|
3140
3202
|
constructor(data?: PartialMessage<GetOrganizationMembersResponse>);
|
|
3141
3203
|
static readonly runtime: typeof proto3;
|
|
3142
3204
|
static readonly typeName = "wg.cosmo.platform.v1.GetOrganizationMembersResponse";
|
|
@@ -8023,3 +8085,41 @@ export declare class UpdateContractResponse extends Message<UpdateContractRespon
|
|
|
8023
8085
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateContractResponse;
|
|
8024
8086
|
static equals(a: UpdateContractResponse | PlainMessage<UpdateContractResponse> | undefined, b: UpdateContractResponse | PlainMessage<UpdateContractResponse> | undefined): boolean;
|
|
8025
8087
|
}
|
|
8088
|
+
/**
|
|
8089
|
+
* @generated from message wg.cosmo.platform.v1.IsMemberLimitReachedRequest
|
|
8090
|
+
*/
|
|
8091
|
+
export declare class IsMemberLimitReachedRequest extends Message<IsMemberLimitReachedRequest> {
|
|
8092
|
+
constructor(data?: PartialMessage<IsMemberLimitReachedRequest>);
|
|
8093
|
+
static readonly runtime: typeof proto3;
|
|
8094
|
+
static readonly typeName = "wg.cosmo.platform.v1.IsMemberLimitReachedRequest";
|
|
8095
|
+
static readonly fields: FieldList;
|
|
8096
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IsMemberLimitReachedRequest;
|
|
8097
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IsMemberLimitReachedRequest;
|
|
8098
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IsMemberLimitReachedRequest;
|
|
8099
|
+
static equals(a: IsMemberLimitReachedRequest | PlainMessage<IsMemberLimitReachedRequest> | undefined, b: IsMemberLimitReachedRequest | PlainMessage<IsMemberLimitReachedRequest> | undefined): boolean;
|
|
8100
|
+
}
|
|
8101
|
+
/**
|
|
8102
|
+
* @generated from message wg.cosmo.platform.v1.IsMemberLimitReachedResponse
|
|
8103
|
+
*/
|
|
8104
|
+
export declare class IsMemberLimitReachedResponse extends Message<IsMemberLimitReachedResponse> {
|
|
8105
|
+
/**
|
|
8106
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
8107
|
+
*/
|
|
8108
|
+
response?: Response;
|
|
8109
|
+
/**
|
|
8110
|
+
* @generated from field: bool limit_reached = 2;
|
|
8111
|
+
*/
|
|
8112
|
+
limitReached: boolean;
|
|
8113
|
+
/**
|
|
8114
|
+
* @generated from field: int32 member_count = 3;
|
|
8115
|
+
*/
|
|
8116
|
+
memberCount: number;
|
|
8117
|
+
constructor(data?: PartialMessage<IsMemberLimitReachedResponse>);
|
|
8118
|
+
static readonly runtime: typeof proto3;
|
|
8119
|
+
static readonly typeName = "wg.cosmo.platform.v1.IsMemberLimitReachedResponse";
|
|
8120
|
+
static readonly fields: FieldList;
|
|
8121
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IsMemberLimitReachedResponse;
|
|
8122
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IsMemberLimitReachedResponse;
|
|
8123
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IsMemberLimitReachedResponse;
|
|
8124
|
+
static equals(a: IsMemberLimitReachedResponse | PlainMessage<IsMemberLimitReachedResponse> | undefined, b: IsMemberLimitReachedResponse | PlainMessage<IsMemberLimitReachedResponse> | undefined): boolean;
|
|
8125
|
+
}
|
|
@@ -2001,6 +2001,10 @@ export class GetSubgraphsRequest extends Message {
|
|
|
2001
2001
|
* @generated from field: string namespace = 3;
|
|
2002
2002
|
*/
|
|
2003
2003
|
namespace = "";
|
|
2004
|
+
/**
|
|
2005
|
+
* @generated from field: optional string query = 4;
|
|
2006
|
+
*/
|
|
2007
|
+
query;
|
|
2004
2008
|
constructor(data) {
|
|
2005
2009
|
super();
|
|
2006
2010
|
proto3.util.initPartial(data, this);
|
|
@@ -2011,6 +2015,7 @@ export class GetSubgraphsRequest extends Message {
|
|
|
2011
2015
|
{ no: 1, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
2012
2016
|
{ no: 2, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
2013
2017
|
{ no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2018
|
+
{ no: 4, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2014
2019
|
]);
|
|
2015
2020
|
static fromBinary(bytes, options) {
|
|
2016
2021
|
return new GetSubgraphsRequest().fromBinary(bytes, options);
|
|
@@ -2122,6 +2127,10 @@ export class GetSubgraphsResponse extends Message {
|
|
|
2122
2127
|
* @generated from field: repeated wg.cosmo.platform.v1.Subgraph graphs = 2;
|
|
2123
2128
|
*/
|
|
2124
2129
|
graphs = [];
|
|
2130
|
+
/**
|
|
2131
|
+
* @generated from field: int32 count = 3;
|
|
2132
|
+
*/
|
|
2133
|
+
count = 0;
|
|
2125
2134
|
constructor(data) {
|
|
2126
2135
|
super();
|
|
2127
2136
|
proto3.util.initPartial(data, this);
|
|
@@ -2131,6 +2140,7 @@ export class GetSubgraphsResponse extends Message {
|
|
|
2131
2140
|
static fields = proto3.util.newFieldList(() => [
|
|
2132
2141
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
2133
2142
|
{ no: 2, name: "graphs", kind: "message", T: Subgraph, repeated: true },
|
|
2143
|
+
{ no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
2134
2144
|
]);
|
|
2135
2145
|
static fromBinary(bytes, options) {
|
|
2136
2146
|
return new GetSubgraphsResponse().fromBinary(bytes, options);
|
|
@@ -4723,17 +4733,103 @@ export class PendingOrgInvitation extends Message {
|
|
|
4723
4733
|
return proto3.util.equals(PendingOrgInvitation, a, b);
|
|
4724
4734
|
}
|
|
4725
4735
|
}
|
|
4736
|
+
/**
|
|
4737
|
+
* @generated from message wg.cosmo.platform.v1.GetPendingOrganizationMembersRequest
|
|
4738
|
+
*/
|
|
4739
|
+
export class GetPendingOrganizationMembersRequest extends Message {
|
|
4740
|
+
/**
|
|
4741
|
+
* @generated from field: wg.cosmo.platform.v1.Pagination pagination = 1;
|
|
4742
|
+
*/
|
|
4743
|
+
pagination;
|
|
4744
|
+
/**
|
|
4745
|
+
* @generated from field: optional string search = 2;
|
|
4746
|
+
*/
|
|
4747
|
+
search;
|
|
4748
|
+
constructor(data) {
|
|
4749
|
+
super();
|
|
4750
|
+
proto3.util.initPartial(data, this);
|
|
4751
|
+
}
|
|
4752
|
+
static runtime = proto3;
|
|
4753
|
+
static typeName = "wg.cosmo.platform.v1.GetPendingOrganizationMembersRequest";
|
|
4754
|
+
static fields = proto3.util.newFieldList(() => [
|
|
4755
|
+
{ no: 1, name: "pagination", kind: "message", T: Pagination },
|
|
4756
|
+
{ no: 2, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
4757
|
+
]);
|
|
4758
|
+
static fromBinary(bytes, options) {
|
|
4759
|
+
return new GetPendingOrganizationMembersRequest().fromBinary(bytes, options);
|
|
4760
|
+
}
|
|
4761
|
+
static fromJson(jsonValue, options) {
|
|
4762
|
+
return new GetPendingOrganizationMembersRequest().fromJson(jsonValue, options);
|
|
4763
|
+
}
|
|
4764
|
+
static fromJsonString(jsonString, options) {
|
|
4765
|
+
return new GetPendingOrganizationMembersRequest().fromJsonString(jsonString, options);
|
|
4766
|
+
}
|
|
4767
|
+
static equals(a, b) {
|
|
4768
|
+
return proto3.util.equals(GetPendingOrganizationMembersRequest, a, b);
|
|
4769
|
+
}
|
|
4770
|
+
}
|
|
4771
|
+
/**
|
|
4772
|
+
* @generated from message wg.cosmo.platform.v1.GetPendingOrganizationMembersResponse
|
|
4773
|
+
*/
|
|
4774
|
+
export class GetPendingOrganizationMembersResponse extends Message {
|
|
4775
|
+
/**
|
|
4776
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
4777
|
+
*/
|
|
4778
|
+
response;
|
|
4779
|
+
/**
|
|
4780
|
+
* @generated from field: repeated wg.cosmo.platform.v1.PendingOrgInvitation pendingInvitations = 2;
|
|
4781
|
+
*/
|
|
4782
|
+
pendingInvitations = [];
|
|
4783
|
+
/**
|
|
4784
|
+
* @generated from field: int32 total_count = 3;
|
|
4785
|
+
*/
|
|
4786
|
+
totalCount = 0;
|
|
4787
|
+
constructor(data) {
|
|
4788
|
+
super();
|
|
4789
|
+
proto3.util.initPartial(data, this);
|
|
4790
|
+
}
|
|
4791
|
+
static runtime = proto3;
|
|
4792
|
+
static typeName = "wg.cosmo.platform.v1.GetPendingOrganizationMembersResponse";
|
|
4793
|
+
static fields = proto3.util.newFieldList(() => [
|
|
4794
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
4795
|
+
{ no: 2, name: "pendingInvitations", kind: "message", T: PendingOrgInvitation, repeated: true },
|
|
4796
|
+
{ no: 3, name: "total_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
4797
|
+
]);
|
|
4798
|
+
static fromBinary(bytes, options) {
|
|
4799
|
+
return new GetPendingOrganizationMembersResponse().fromBinary(bytes, options);
|
|
4800
|
+
}
|
|
4801
|
+
static fromJson(jsonValue, options) {
|
|
4802
|
+
return new GetPendingOrganizationMembersResponse().fromJson(jsonValue, options);
|
|
4803
|
+
}
|
|
4804
|
+
static fromJsonString(jsonString, options) {
|
|
4805
|
+
return new GetPendingOrganizationMembersResponse().fromJsonString(jsonString, options);
|
|
4806
|
+
}
|
|
4807
|
+
static equals(a, b) {
|
|
4808
|
+
return proto3.util.equals(GetPendingOrganizationMembersResponse, a, b);
|
|
4809
|
+
}
|
|
4810
|
+
}
|
|
4726
4811
|
/**
|
|
4727
4812
|
* @generated from message wg.cosmo.platform.v1.GetOrganizationMembersRequest
|
|
4728
4813
|
*/
|
|
4729
4814
|
export class GetOrganizationMembersRequest extends Message {
|
|
4815
|
+
/**
|
|
4816
|
+
* @generated from field: wg.cosmo.platform.v1.Pagination pagination = 1;
|
|
4817
|
+
*/
|
|
4818
|
+
pagination;
|
|
4819
|
+
/**
|
|
4820
|
+
* @generated from field: optional string search = 2;
|
|
4821
|
+
*/
|
|
4822
|
+
search;
|
|
4730
4823
|
constructor(data) {
|
|
4731
4824
|
super();
|
|
4732
4825
|
proto3.util.initPartial(data, this);
|
|
4733
4826
|
}
|
|
4734
4827
|
static runtime = proto3;
|
|
4735
4828
|
static typeName = "wg.cosmo.platform.v1.GetOrganizationMembersRequest";
|
|
4736
|
-
static fields = proto3.util.newFieldList(() => [
|
|
4829
|
+
static fields = proto3.util.newFieldList(() => [
|
|
4830
|
+
{ no: 1, name: "pagination", kind: "message", T: Pagination },
|
|
4831
|
+
{ no: 2, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
4832
|
+
]);
|
|
4737
4833
|
static fromBinary(bytes, options) {
|
|
4738
4834
|
return new GetOrganizationMembersRequest().fromBinary(bytes, options);
|
|
4739
4835
|
}
|
|
@@ -4760,9 +4856,9 @@ export class GetOrganizationMembersResponse extends Message {
|
|
|
4760
4856
|
*/
|
|
4761
4857
|
members = [];
|
|
4762
4858
|
/**
|
|
4763
|
-
* @generated from field:
|
|
4859
|
+
* @generated from field: int32 total_count = 3;
|
|
4764
4860
|
*/
|
|
4765
|
-
|
|
4861
|
+
totalCount = 0;
|
|
4766
4862
|
constructor(data) {
|
|
4767
4863
|
super();
|
|
4768
4864
|
proto3.util.initPartial(data, this);
|
|
@@ -4772,7 +4868,7 @@ export class GetOrganizationMembersResponse extends Message {
|
|
|
4772
4868
|
static fields = proto3.util.newFieldList(() => [
|
|
4773
4869
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
4774
4870
|
{ no: 2, name: "members", kind: "message", T: OrgMember, repeated: true },
|
|
4775
|
-
{ no: 3, name: "
|
|
4871
|
+
{ no: 3, name: "total_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
4776
4872
|
]);
|
|
4777
4873
|
static fromBinary(bytes, options) {
|
|
4778
4874
|
return new GetOrganizationMembersResponse().fromBinary(bytes, options);
|
|
@@ -12675,4 +12771,68 @@ export class UpdateContractResponse extends Message {
|
|
|
12675
12771
|
return proto3.util.equals(UpdateContractResponse, a, b);
|
|
12676
12772
|
}
|
|
12677
12773
|
}
|
|
12774
|
+
/**
|
|
12775
|
+
* @generated from message wg.cosmo.platform.v1.IsMemberLimitReachedRequest
|
|
12776
|
+
*/
|
|
12777
|
+
export class IsMemberLimitReachedRequest extends Message {
|
|
12778
|
+
constructor(data) {
|
|
12779
|
+
super();
|
|
12780
|
+
proto3.util.initPartial(data, this);
|
|
12781
|
+
}
|
|
12782
|
+
static runtime = proto3;
|
|
12783
|
+
static typeName = "wg.cosmo.platform.v1.IsMemberLimitReachedRequest";
|
|
12784
|
+
static fields = proto3.util.newFieldList(() => []);
|
|
12785
|
+
static fromBinary(bytes, options) {
|
|
12786
|
+
return new IsMemberLimitReachedRequest().fromBinary(bytes, options);
|
|
12787
|
+
}
|
|
12788
|
+
static fromJson(jsonValue, options) {
|
|
12789
|
+
return new IsMemberLimitReachedRequest().fromJson(jsonValue, options);
|
|
12790
|
+
}
|
|
12791
|
+
static fromJsonString(jsonString, options) {
|
|
12792
|
+
return new IsMemberLimitReachedRequest().fromJsonString(jsonString, options);
|
|
12793
|
+
}
|
|
12794
|
+
static equals(a, b) {
|
|
12795
|
+
return proto3.util.equals(IsMemberLimitReachedRequest, a, b);
|
|
12796
|
+
}
|
|
12797
|
+
}
|
|
12798
|
+
/**
|
|
12799
|
+
* @generated from message wg.cosmo.platform.v1.IsMemberLimitReachedResponse
|
|
12800
|
+
*/
|
|
12801
|
+
export class IsMemberLimitReachedResponse extends Message {
|
|
12802
|
+
/**
|
|
12803
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
12804
|
+
*/
|
|
12805
|
+
response;
|
|
12806
|
+
/**
|
|
12807
|
+
* @generated from field: bool limit_reached = 2;
|
|
12808
|
+
*/
|
|
12809
|
+
limitReached = false;
|
|
12810
|
+
/**
|
|
12811
|
+
* @generated from field: int32 member_count = 3;
|
|
12812
|
+
*/
|
|
12813
|
+
memberCount = 0;
|
|
12814
|
+
constructor(data) {
|
|
12815
|
+
super();
|
|
12816
|
+
proto3.util.initPartial(data, this);
|
|
12817
|
+
}
|
|
12818
|
+
static runtime = proto3;
|
|
12819
|
+
static typeName = "wg.cosmo.platform.v1.IsMemberLimitReachedResponse";
|
|
12820
|
+
static fields = proto3.util.newFieldList(() => [
|
|
12821
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
12822
|
+
{ no: 2, name: "limit_reached", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
12823
|
+
{ no: 3, name: "member_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
12824
|
+
]);
|
|
12825
|
+
static fromBinary(bytes, options) {
|
|
12826
|
+
return new IsMemberLimitReachedResponse().fromBinary(bytes, options);
|
|
12827
|
+
}
|
|
12828
|
+
static fromJson(jsonValue, options) {
|
|
12829
|
+
return new IsMemberLimitReachedResponse().fromJson(jsonValue, options);
|
|
12830
|
+
}
|
|
12831
|
+
static fromJsonString(jsonString, options) {
|
|
12832
|
+
return new IsMemberLimitReachedResponse().fromJsonString(jsonString, options);
|
|
12833
|
+
}
|
|
12834
|
+
static equals(a, b) {
|
|
12835
|
+
return proto3.util.equals(IsMemberLimitReachedResponse, a, b);
|
|
12836
|
+
}
|
|
12837
|
+
}
|
|
12678
12838
|
//# sourceMappingURL=platform_pb.js.map
|