phx-node 1.0.65 → 1.0.67

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.
@@ -1,13 +1,12 @@
1
1
  import { HttpService } from "@nestjs/axios";
2
- export interface GrpcRequestType {
3
- query: string;
2
+ import { QueryOrPersistedId } from "./types";
3
+ export type GrpcRequestType = QueryOrPersistedId & {
4
4
  hostname: string;
5
5
  variables?: Record<string, any> | null | undefined;
6
- }
7
- export interface GrpcRequestDataCenterType {
8
- query: string;
6
+ };
7
+ export type GrpcRequestDataCenterType = QueryOrPersistedId & {
9
8
  variables?: Record<string, any> | null | undefined;
10
- }
9
+ };
11
10
  export declare class PHXGrpcClientSystemService {
12
11
  private readonly httpService;
13
12
  private readonly logger;
@@ -15,8 +14,8 @@ export declare class PHXGrpcClientSystemService {
15
14
  private readonly projectSource;
16
15
  constructor(httpService: HttpService);
17
16
  debug(hostname: string): void;
18
- query({ query, variables, hostname, }: GrpcRequestType): Promise<any>;
19
- mutation({ query, variables, hostname, }: GrpcRequestType): Promise<any>;
20
- queryDataCenter({ query, variables, }: GrpcRequestDataCenterType): Promise<any>;
21
- mutationDataCenter({ query, variables, }: GrpcRequestDataCenterType): Promise<any>;
17
+ query({ query, variables, hostname, persistedId }: GrpcRequestType): Promise<any>;
18
+ mutation({ query, variables, hostname, persistedId }: GrpcRequestType): Promise<any>;
19
+ queryDataCenter({ query, variables, persistedId }: GrpcRequestDataCenterType): Promise<any>;
20
+ mutationDataCenter({ query, variables, persistedId }: GrpcRequestDataCenterType): Promise<any>;
22
21
  }
@@ -34,12 +34,12 @@ let PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = class PHXGrpcCli
34
34
  this.logger.debug(this.internalGrpcGateway);
35
35
  }
36
36
  query(_a) {
37
- return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, }) {
37
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, persistedId }) {
38
38
  if (!hostname)
39
39
  return;
40
40
  try {
41
41
  const response = yield this.httpService
42
- .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: { hostname } }))
42
+ .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname } }))
43
43
  .toPromise();
44
44
  return response.data;
45
45
  }
@@ -50,12 +50,12 @@ let PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = class PHXGrpcCli
50
50
  });
51
51
  }
52
52
  mutation(_a) {
53
- return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, }) {
53
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, hostname, persistedId }) {
54
54
  if (!hostname)
55
55
  return;
56
56
  try {
57
57
  const response = yield this.httpService
58
- .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: { hostname } }))
58
+ .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname } }))
59
59
  .toPromise();
60
60
  return response.data;
61
61
  }
@@ -66,10 +66,10 @@ let PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = class PHXGrpcCli
66
66
  });
67
67
  }
68
68
  queryDataCenter(_a) {
69
- return __awaiter(this, arguments, void 0, function* ({ query, variables, }) {
69
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId }) {
70
70
  try {
71
71
  const response = yield this.httpService
72
- .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: { hostname: "data-center" } }))
72
+ .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "data-center" } }))
73
73
  .toPromise();
74
74
  return response.data;
75
75
  }
@@ -80,10 +80,10 @@ let PHXGrpcClientSystemService = PHXGrpcClientSystemService_1 = class PHXGrpcCli
80
80
  });
81
81
  }
82
82
  mutationDataCenter(_a) {
83
- return __awaiter(this, arguments, void 0, function* ({ query, variables, }) {
83
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId }) {
84
84
  try {
85
85
  const response = yield this.httpService
86
- .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: { hostname: "data-center" } }))
86
+ .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: { hostname: "data-center" } }))
87
87
  .toPromise();
88
88
  return response.data;
89
89
  }
@@ -1 +1 @@
1
- {"version":3,"file":"grpc-client-system.service.js","sourceRoot":"","sources":["../../../src/module/grpc-client/grpc-client-system.service.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"grpc-client-system.service.js","sourceRoot":"","sources":["../../../src/module/grpc-client/grpc-client-system.service.ts"],"names":[],"mappings":"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"}
@@ -1,14 +1,14 @@
1
1
  import { HttpService } from "@nestjs/axios";
2
- export interface GrpcRequestType {
3
- query: string;
2
+ import { QueryOrPersistedId } from "./types";
3
+ export type GrpcRequestType = QueryOrPersistedId & {
4
4
  variables?: Record<string, any> | null | undefined;
5
- }
5
+ };
6
6
  export declare class PHXGrpcClientService {
7
7
  private readonly httpService;
8
8
  private readonly request;
9
9
  private readonly internalGrpcGateway;
10
10
  private readonly projectSource;
11
11
  constructor(httpService: HttpService, request: Request);
12
- query({ query, variables }: GrpcRequestType): Promise<any>;
13
- mutation({ query, variables }: GrpcRequestType): Promise<any>;
12
+ query({ query, variables, persistedId }: GrpcRequestType): Promise<any>;
13
+ mutation({ query, variables, persistedId }: GrpcRequestType): Promise<any>;
14
14
  }
@@ -33,10 +33,10 @@ let PHXGrpcClientService = class PHXGrpcClientService {
33
33
  this.projectSource = process.env.PROJECT_SOURCE;
34
34
  }
35
35
  query(_a) {
36
- return __awaiter(this, arguments, void 0, function* ({ query, variables }) {
36
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId }) {
37
37
  try {
38
38
  const response = yield this.httpService
39
- .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: this.request.headers }))
39
+ .post(`${this.internalGrpcGateway}/query`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: this.request.headers }))
40
40
  .toPromise();
41
41
  return response.data;
42
42
  }
@@ -47,10 +47,10 @@ let PHXGrpcClientService = class PHXGrpcClientService {
47
47
  });
48
48
  }
49
49
  mutation(_a) {
50
- return __awaiter(this, arguments, void 0, function* ({ query, variables }) {
50
+ return __awaiter(this, arguments, void 0, function* ({ query, variables, persistedId }) {
51
51
  try {
52
52
  const response = yield this.httpService
53
- .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, headers: this.request.headers }))
53
+ .post(`${this.internalGrpcGateway}/mutation`, Object.assign(Object.assign({}, (variables && { variables })), { source: this.projectSource, query, persisted_id: persistedId, headers: this.request.headers }))
54
54
  .toPromise();
55
55
  return response.data;
56
56
  }
@@ -1 +1 @@
1
- {"version":3,"file":"grpc-client.service.js","sourceRoot":"","sources":["../../../src/module/grpc-client/grpc-client.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAA4D;AAC5D,yCAA4C;AAC5C,uCAAuC;AAQhC,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAG/B,YACmB,WAAwB,EACP,OAAgB;QADjC,gBAAW,GAAX,WAAW,CAAa;QACP,YAAO,GAAP,OAAO,CAAS;QAElD,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC;QAC7D,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC;IAClD,CAAC;IAEY,KAAK;6DAAC,EAAE,KAAK,EAAE,SAAS,EAAmB;YACtD,IAAI,CAAC;gBACH,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,WAAW;qBACpC,IAAI,CAAC,GAAG,IAAI,CAAC,mBAAmB,QAAQ,kCACpC,CAAC,SAAS,IAAI,EAAE,SAAS,EAAE,CAAC,KAC/B,MAAM,EAAE,IAAI,CAAC,aAAa,EAC1B,KAAK,EACL,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,IAC7B;qBACD,SAAS,EAAE,CAAC;gBACf,OAAO,QAAQ,CAAC,IAAI,CAAC;YACvB,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;gBAC5B,OAAO,KAAK,CAAC;YACf,CAAC;QACH,CAAC;KAAA;IAEY,QAAQ;6DAAC,EAAE,KAAK,EAAE,SAAS,EAAmB;YACzD,IAAI,CAAC;gBACH,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,WAAW;qBACpC,IAAI,CAAC,GAAG,IAAI,CAAC,mBAAmB,WAAW,kCACvC,CAAC,SAAS,IAAI,EAAE,SAAS,EAAE,CAAC,KAC/B,MAAM,EAAE,IAAI,CAAC,aAAa,EAC1B,KAAK,EACL,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,IAC7B;qBACD,SAAS,EAAE,CAAC;gBACf,OAAO,QAAQ,CAAC,IAAI,CAAC;YACvB,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;gBAC5B,OAAO,KAAK,CAAC;YACf,CAAC;QACH,CAAC;KAAA;CACF,CAAA;AA5CY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,mBAAU,GAAE;IAMR,WAAA,IAAA,eAAM,EAAC,cAAO,CAAC,CAAA;qCADc,mBAAW;QACE,OAAO;GALzC,oBAAoB,CA4ChC"}
1
+ {"version":3,"file":"grpc-client.service.js","sourceRoot":"","sources":["../../../src/module/grpc-client/grpc-client.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAoD;AACpD,yCAA4C;AAC5C,uCAAuC;AAQhC,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;IAG/B,YACmB,WAAwB,EACP,OAAgB;QADjC,gBAAW,GAAX,WAAW,CAAa;QACP,YAAO,GAAP,OAAO,CAAS;QAElD,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC;QAC7D,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC;IAClD,CAAC;IAEY,KAAK;6DAAC,EAAE,KAAK,EAAE,SAAS,EAAE,WAAW,EAAmB;YACnE,IAAI,CAAC;gBACH,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,WAAW;qBACpC,IAAI,CAAC,GAAG,IAAI,CAAC,mBAAmB,QAAQ,kCACpC,CAAC,SAAS,IAAI,EAAE,SAAS,EAAE,CAAC,KAC/B,MAAM,EAAE,IAAI,CAAC,aAAa,EAC1B,KAAK,EACL,YAAY,EAAE,WAAW,EACzB,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,IAC7B;qBACD,SAAS,EAAE,CAAC;gBACf,OAAO,QAAQ,CAAC,IAAI,CAAC;YACvB,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;gBAC5B,OAAO,KAAK,CAAC;YACf,CAAC;QACH,CAAC;KAAA;IAEY,QAAQ;6DAAC,EAAE,KAAK,EAAE,SAAS,EAAE,WAAW,EAAmB;YACtE,IAAI,CAAC;gBACH,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,WAAW;qBACpC,IAAI,CAAC,GAAG,IAAI,CAAC,mBAAmB,WAAW,kCACvC,CAAC,SAAS,IAAI,EAAE,SAAS,EAAE,CAAC,KAC/B,MAAM,EAAE,IAAI,CAAC,aAAa,EAC1B,KAAK,EACL,YAAY,EAAE,WAAW,EACzB,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,IAC7B;qBACD,SAAS,EAAE,CAAC;gBACf,OAAO,QAAQ,CAAC,IAAI,CAAC;YACvB,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,OAAO,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;gBAC5B,OAAO,KAAK,CAAC;YACf,CAAC;QACH,CAAC;KAAA;CACF,CAAA;AA9CY,oDAAoB;+BAApB,oBAAoB;IADhC,IAAA,mBAAU,GAAE;IAMR,WAAA,IAAA,eAAM,EAAC,cAAO,CAAC,CAAA;qCADc,mBAAW;QACE,OAAO;GALzC,oBAAoB,CA8ChC"}
@@ -0,0 +1,7 @@
1
+ export type QueryOrPersistedId = {
2
+ query: string;
3
+ persistedId?: never;
4
+ } | {
5
+ query?: never;
6
+ persistedId: string;
7
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/module/grpc-client/types.ts"],"names":[],"mappings":""}
@@ -7,6 +7,6 @@ export interface IBuildContent {
7
7
  }
8
8
  export declare class PHXTransactionContentService {
9
9
  logger: Logger;
10
- buildContent({ student_id, module_code, month_id, detail_id, }: IBuildContent): Promise<string>;
11
- parseContent(transactionContent: string): Promise<{}>;
10
+ buildContent({ student_id, module_code, month_id, detail_id, }: IBuildContent): string;
11
+ parseContent(transactionContent: string): {};
12
12
  }
@@ -5,15 +5,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
5
5
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
9
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
10
- return new (P || (P = Promise))(function (resolve, reject) {
11
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
12
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
13
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
14
- step((generator = generator.apply(thisArg, _arguments || [])).next());
15
- });
16
- };
17
8
  var PHXTransactionContentService_1;
18
9
  Object.defineProperty(exports, "__esModule", { value: true });
19
10
  exports.PHXTransactionContentService = void 0;
@@ -23,30 +14,26 @@ let PHXTransactionContentService = PHXTransactionContentService_1 = class PHXTra
23
14
  constructor() {
24
15
  this.logger = new common_1.Logger(PHXTransactionContentService_1.name);
25
16
  }
26
- buildContent(_a) {
27
- return __awaiter(this, arguments, void 0, function* ({ student_id, module_code, month_id, detail_id, }) {
28
- const content = [student_id, module_code, month_id];
29
- if (detail_id)
30
- content.push(detail_id);
31
- return `Z${content.join(".")}W`;
32
- });
17
+ buildContent({ student_id, module_code, month_id, detail_id, }) {
18
+ const content = [student_id, module_code, month_id];
19
+ if (detail_id)
20
+ content.push(detail_id);
21
+ return `Z${content.join(".")}W`;
33
22
  }
34
23
  parseContent(transactionContent) {
35
- return __awaiter(this, void 0, void 0, function* () {
36
- var _a, _b, _c;
37
- const contentReal = transactionContent.match(/Z(.*?)W/);
38
- let result = {};
39
- if (contentReal && contentReal[1]) {
40
- const splitContent = contentReal[1].split(".");
41
- result = {
42
- student_id: Number((_a = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.STUDENT_ID]) !== null && _a !== void 0 ? _a : 0),
43
- module_code: splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.MODULE_CODE],
44
- month_id: Number((_b = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.MONTH_ID]) !== null && _b !== void 0 ? _b : 0),
45
- detail_id: Number((_c = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.DETAIL_ID]) !== null && _c !== void 0 ? _c : 0),
46
- };
47
- }
48
- return result;
49
- });
24
+ var _a, _b, _c;
25
+ const contentReal = transactionContent.match(/Z(.*?)W/);
26
+ let result = {};
27
+ if (contentReal && contentReal[1]) {
28
+ const splitContent = contentReal[1].split(".");
29
+ result = {
30
+ student_id: Number((_a = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.STUDENT_ID]) !== null && _a !== void 0 ? _a : 0),
31
+ module_code: splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.MODULE_CODE],
32
+ month_id: Number((_b = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.MONTH_ID]) !== null && _b !== void 0 ? _b : 0),
33
+ detail_id: Number((_c = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.DETAIL_ID]) !== null && _c !== void 0 ? _c : 0),
34
+ };
35
+ }
36
+ return result;
50
37
  }
51
38
  };
52
39
  exports.PHXTransactionContentService = PHXTransactionContentService;
@@ -1 +1 @@
1
- {"version":3,"file":"create-content-transaction.service.js","sourceRoot":"","sources":["../../../../src/module/helpers-service/tuition-helper-service/create-content-transaction.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,2CAAoD;AACpD,wDAAkE;AAU3D,IAAM,4BAA4B,oCAAlC,MAAM,4BAA4B;IAAlC;QACL,WAAM,GAAG,IAAI,eAAM,CAAC,8BAA4B,CAAC,IAAI,CAAC,CAAC;IA+BzD,CAAC;IA7Bc,YAAY;6DAAC,EACxB,UAAU,EACV,WAAW,EACX,QAAQ,EACR,SAAS,GACK;YACd,MAAM,OAAO,GAAG,CAAC,UAAU,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC;YACpD,IAAI,SAAS;gBAAE,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACvC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC;QAClC,CAAC;KAAA;IAEY,YAAY,CAAC,kBAA0B;;;YAClD,MAAM,WAAW,GAAG,kBAAkB,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;YACxD,IAAI,MAAM,GAAG,EAAE,CAAC;YAChB,IAAI,WAAW,IAAI,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC;gBAClC,MAAM,YAAY,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAC/C,MAAM,GAAG;oBACP,UAAU,EAAE,MAAM,CAChB,MAAA,YAAY,CAAC,mCAAyB,CAAC,UAAU,CAAC,mCAAI,CAAC,CACxD;oBACD,WAAW,EAAE,YAAY,CAAC,mCAAyB,CAAC,WAAW,CAAC;oBAChE,QAAQ,EAAE,MAAM,CAAC,MAAA,YAAY,CAAC,mCAAyB,CAAC,QAAQ,CAAC,mCAAI,CAAC,CAAC;oBACvE,SAAS,EAAE,MAAM,CACf,MAAA,YAAY,CAAC,mCAAyB,CAAC,SAAS,CAAC,mCAAI,CAAC,CACvD;iBACF,CAAC;YACJ,CAAC;YACD,OAAO,MAAM,CAAC;QAChB,CAAC;KAAA;CACF,CAAA;AAhCY,oEAA4B;uCAA5B,4BAA4B;IADxC,IAAA,mBAAU,GAAE;GACA,4BAA4B,CAgCxC"}
1
+ {"version":3,"file":"create-content-transaction.service.js","sourceRoot":"","sources":["../../../../src/module/helpers-service/tuition-helper-service/create-content-transaction.service.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,2CAAoD;AACpD,wDAAkE;AAU3D,IAAM,4BAA4B,oCAAlC,MAAM,4BAA4B;IAAlC;QACL,WAAM,GAAG,IAAI,eAAM,CAAC,8BAA4B,CAAC,IAAI,CAAC,CAAC;IA+BzD,CAAC;IA7BQ,YAAY,CAAC,EAClB,UAAU,EACV,WAAW,EACX,QAAQ,EACR,SAAS,GACK;QACd,MAAM,OAAO,GAAG,CAAC,UAAU,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC;QACpD,IAAI,SAAS;YAAE,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACvC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC;IAClC,CAAC;IAEM,YAAY,CAAC,kBAA0B;;QAC5C,MAAM,WAAW,GAAG,kBAAkB,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;QACxD,IAAI,MAAM,GAAG,EAAE,CAAC;QAChB,IAAI,WAAW,IAAI,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC;YAClC,MAAM,YAAY,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC/C,MAAM,GAAG;gBACP,UAAU,EAAE,MAAM,CAChB,MAAA,YAAY,CAAC,mCAAyB,CAAC,UAAU,CAAC,mCAAI,CAAC,CACxD;gBACD,WAAW,EAAE,YAAY,CAAC,mCAAyB,CAAC,WAAW,CAAC;gBAChE,QAAQ,EAAE,MAAM,CAAC,MAAA,YAAY,CAAC,mCAAyB,CAAC,QAAQ,CAAC,mCAAI,CAAC,CAAC;gBACvE,SAAS,EAAE,MAAM,CACf,MAAA,YAAY,CAAC,mCAAyB,CAAC,SAAS,CAAC,mCAAI,CAAC,CACvD;aACF,CAAC;QACJ,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;CACF,CAAA;AAhCY,oEAA4B;uCAA5B,4BAA4B;IADxC,IAAA,mBAAU,GAAE;GACA,4BAA4B,CAgCxC"}