@xyo-network/bridge-wrapper 3.8.0 → 3.8.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/neutral/index.d.ts
CHANGED
|
@@ -1,2 +1,123 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as _xyo_network_bridge_model from '@xyo-network/bridge-model';
|
|
2
|
+
import { BridgeModule, BridgeInstance, BridgeExposeOptions, BridgeUnexposeOptions } from '@xyo-network/bridge-model';
|
|
3
|
+
import * as _xylabs_object from '@xylabs/object';
|
|
4
|
+
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
5
|
+
import { ModuleIdentifier, ModuleInstance } from '@xyo-network/module-model';
|
|
6
|
+
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
7
|
+
import { Address } from '@xylabs/hex';
|
|
8
|
+
import { ModuleWrapper } from '@xyo-network/module-wrapper';
|
|
9
|
+
|
|
10
|
+
declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeModule> extends ModuleWrapper<TWrappedModule> implements BridgeInstance<TWrappedModule['params']> {
|
|
11
|
+
static readonly instanceIdentityCheck: _xylabs_object.TypeCheck<BridgeInstance<_xyo_network_bridge_model.BridgeParams<_xylabs_object.DeepRestrictToStringKeys<{
|
|
12
|
+
schema: _xyo_network_payload_model.Schema;
|
|
13
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
14
|
+
client?: {
|
|
15
|
+
cache?: true | {
|
|
16
|
+
max?: number | undefined;
|
|
17
|
+
maxSize?: number | undefined;
|
|
18
|
+
ttl?: number | undefined;
|
|
19
|
+
} | undefined;
|
|
20
|
+
discoverRoots?: "start" | "lazy" | undefined;
|
|
21
|
+
maxDepth?: number | undefined;
|
|
22
|
+
} | undefined;
|
|
23
|
+
discoverRoots?: "start" | "lazy" | undefined;
|
|
24
|
+
host?: {
|
|
25
|
+
cache?: true | {
|
|
26
|
+
max?: number | undefined;
|
|
27
|
+
maxSize?: number | undefined;
|
|
28
|
+
ttl?: number | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
maxDepth?: number | undefined;
|
|
31
|
+
} | undefined;
|
|
32
|
+
readonly archiving?: {
|
|
33
|
+
readonly archivists?: string[] | undefined;
|
|
34
|
+
readonly queries?: string[] | undefined;
|
|
35
|
+
} | undefined;
|
|
36
|
+
readonly allowedQueries?: string[] | undefined;
|
|
37
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
38
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
39
|
+
readonly labels?: {
|
|
40
|
+
[x: string]: string | undefined;
|
|
41
|
+
} | undefined;
|
|
42
|
+
readonly paging?: {
|
|
43
|
+
[x: string]: {
|
|
44
|
+
size?: number | undefined;
|
|
45
|
+
};
|
|
46
|
+
} | undefined;
|
|
47
|
+
readonly retry?: {
|
|
48
|
+
backoff?: number | undefined;
|
|
49
|
+
interval?: number | undefined;
|
|
50
|
+
retries?: number | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
readonly security?: {
|
|
53
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
54
|
+
readonly allowed?: {
|
|
55
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
56
|
+
} | undefined;
|
|
57
|
+
readonly disallowed?: {
|
|
58
|
+
[x: string]: Lowercase<string>[];
|
|
59
|
+
} | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
readonly sign?: boolean | undefined;
|
|
62
|
+
readonly storeQueries?: boolean | undefined;
|
|
63
|
+
readonly timestamp?: boolean | undefined;
|
|
64
|
+
}>>, _xyo_network_bridge_model.BridgeModuleEventData>>;
|
|
65
|
+
static readonly moduleIdentityCheck: _xyo_network_module_model.ModuleTypeCheck<BridgeModule<_xyo_network_bridge_model.BridgeParams<_xylabs_object.DeepRestrictToStringKeys<{
|
|
66
|
+
schema: _xyo_network_payload_model.Schema;
|
|
67
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
68
|
+
client?: {
|
|
69
|
+
cache?: true | {
|
|
70
|
+
max?: number | undefined;
|
|
71
|
+
maxSize?: number | undefined;
|
|
72
|
+
ttl?: number | undefined;
|
|
73
|
+
} | undefined;
|
|
74
|
+
discoverRoots?: "start" | "lazy" | undefined;
|
|
75
|
+
maxDepth?: number | undefined;
|
|
76
|
+
} | undefined;
|
|
77
|
+
discoverRoots?: "start" | "lazy" | undefined;
|
|
78
|
+
host?: {
|
|
79
|
+
cache?: true | {
|
|
80
|
+
max?: number | undefined;
|
|
81
|
+
maxSize?: number | undefined;
|
|
82
|
+
ttl?: number | undefined;
|
|
83
|
+
} | undefined;
|
|
84
|
+
maxDepth?: number | undefined;
|
|
85
|
+
} | undefined;
|
|
86
|
+
readonly archiving?: {
|
|
87
|
+
readonly archivists?: string[] | undefined;
|
|
88
|
+
readonly queries?: string[] | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
readonly allowedQueries?: string[] | undefined;
|
|
91
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
92
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
93
|
+
readonly labels?: {
|
|
94
|
+
[x: string]: string | undefined;
|
|
95
|
+
} | undefined;
|
|
96
|
+
readonly paging?: {
|
|
97
|
+
[x: string]: {
|
|
98
|
+
size?: number | undefined;
|
|
99
|
+
};
|
|
100
|
+
} | undefined;
|
|
101
|
+
readonly retry?: {
|
|
102
|
+
backoff?: number | undefined;
|
|
103
|
+
interval?: number | undefined;
|
|
104
|
+
retries?: number | undefined;
|
|
105
|
+
} | undefined;
|
|
106
|
+
readonly security?: {
|
|
107
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
108
|
+
readonly allowed?: {
|
|
109
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
110
|
+
} | undefined;
|
|
111
|
+
readonly disallowed?: {
|
|
112
|
+
[x: string]: Lowercase<string>[];
|
|
113
|
+
} | undefined;
|
|
114
|
+
} | undefined;
|
|
115
|
+
readonly sign?: boolean | undefined;
|
|
116
|
+
readonly storeQueries?: boolean | undefined;
|
|
117
|
+
readonly timestamp?: boolean | undefined;
|
|
118
|
+
}>>, _xyo_network_bridge_model.BridgeModuleEventData>>;
|
|
119
|
+
expose(id: ModuleIdentifier, options?: BridgeExposeOptions): Promise<ModuleInstance[]>;
|
|
120
|
+
unexpose(id: ModuleIdentifier, options?: BridgeUnexposeOptions): Promise<Address[]>;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export { BridgeWrapper };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/BridgeWrapper.ts"],"sourcesContent":["import type { Address } from '@xylabs/hex'\nimport type {\n BridgeExposeOptions,\n BridgeExposeQuery,\n BridgeInstance,\n BridgeModule,\n BridgeUnexposeOptions,\n BridgeUnexposeQuery,\n ModuleFilterPayload,\n} from '@xyo-network/bridge-model'\nimport {\n BridgeExposeQuerySchema,\n BridgeUnexposeQuerySchema,\n isBridgeInstance,\n isBridgeModule,\n ModuleFilterPayloadSchema,\n} from '@xyo-network/bridge-model'\nimport type {\n AddressPayload, ModuleIdentifier, ModuleInstance,\n} from '@xyo-network/module-model'\nimport { constructableModuleWrapper, ModuleWrapper } from '@xyo-network/module-wrapper'\n\nconstructableModuleWrapper()\nexport class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeModule>\n extends ModuleWrapper<TWrappedModule>\n implements BridgeInstance<TWrappedModule['params']> {\n static override instanceIdentityCheck = isBridgeInstance\n static override moduleIdentityCheck = isBridgeModule\n\n async expose(id: ModuleIdentifier, options?: BridgeExposeOptions): Promise<ModuleInstance[]> {\n const filterPayload: ModuleFilterPayload = {\n id, schema: ModuleFilterPayloadSchema, ...options,\n }\n const addresses = (\n await this.sendQuery<BridgeExposeQuery, ModuleFilterPayload, AddressPayload>({ schema: BridgeExposeQuerySchema }, [filterPayload])\n ).map(({ address }) => address)\n return await Promise.all((addresses as Address[]).map(address => this.resolve(address)))\n }\n\n async unexpose(id: ModuleIdentifier, options?: BridgeUnexposeOptions): Promise<Address[]> {\n const filterPayload: ModuleFilterPayload = {\n id, schema: ModuleFilterPayloadSchema, ...options,\n }\n return (\n await this.sendQuery<BridgeUnexposeQuery, ModuleFilterPayload, AddressPayload>({ schema: BridgeUnexposeQuerySchema }, [filterPayload])\n ).map(({ address }) => address)\n }\n}\n"],"mappings":";AAUA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIP,SAAS,4BAA4B,qBAAqB;AAE1D,2BAA2B;AACpB,IAAM,gBAAN,cACG,cAC4C;AAAA,EACpD,
|
|
1
|
+
{"version":3,"sources":["../../src/BridgeWrapper.ts"],"sourcesContent":["import type { Address } from '@xylabs/hex'\nimport type {\n BridgeExposeOptions,\n BridgeExposeQuery,\n BridgeInstance,\n BridgeModule,\n BridgeUnexposeOptions,\n BridgeUnexposeQuery,\n ModuleFilterPayload,\n} from '@xyo-network/bridge-model'\nimport {\n BridgeExposeQuerySchema,\n BridgeUnexposeQuerySchema,\n isBridgeInstance,\n isBridgeModule,\n ModuleFilterPayloadSchema,\n} from '@xyo-network/bridge-model'\nimport type {\n AddressPayload, ModuleIdentifier, ModuleInstance,\n} from '@xyo-network/module-model'\nimport { constructableModuleWrapper, ModuleWrapper } from '@xyo-network/module-wrapper'\n\nconstructableModuleWrapper()\nexport class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeModule>\n extends ModuleWrapper<TWrappedModule>\n implements BridgeInstance<TWrappedModule['params']> {\n static override readonly instanceIdentityCheck = isBridgeInstance\n static override readonly moduleIdentityCheck = isBridgeModule\n\n async expose(id: ModuleIdentifier, options?: BridgeExposeOptions): Promise<ModuleInstance[]> {\n const filterPayload: ModuleFilterPayload = {\n id, schema: ModuleFilterPayloadSchema, ...options,\n }\n const addresses = (\n await this.sendQuery<BridgeExposeQuery, ModuleFilterPayload, AddressPayload>({ schema: BridgeExposeQuerySchema }, [filterPayload])\n ).map(({ address }) => address)\n return await Promise.all((addresses as Address[]).map(address => this.resolve(address)))\n }\n\n async unexpose(id: ModuleIdentifier, options?: BridgeUnexposeOptions): Promise<Address[]> {\n const filterPayload: ModuleFilterPayload = {\n id, schema: ModuleFilterPayloadSchema, ...options,\n }\n return (\n await this.sendQuery<BridgeUnexposeQuery, ModuleFilterPayload, AddressPayload>({ schema: BridgeUnexposeQuerySchema }, [filterPayload])\n ).map(({ address }) => address)\n }\n}\n"],"mappings":";AAUA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIP,SAAS,4BAA4B,qBAAqB;AAE1D,2BAA2B;AACpB,IAAM,gBAAN,cACG,cAC4C;AAAA,EACpD,OAAyB,wBAAwB;AAAA,EACjD,OAAyB,sBAAsB;AAAA,EAE/C,MAAM,OAAO,IAAsB,SAA0D;AAC3F,UAAM,gBAAqC;AAAA,MACzC;AAAA,MAAI,QAAQ;AAAA,MAA2B,GAAG;AAAA,IAC5C;AACA,UAAM,aACJ,MAAM,KAAK,UAAkE,EAAE,QAAQ,wBAAwB,GAAG,CAAC,aAAa,CAAC,GACjI,IAAI,CAAC,EAAE,QAAQ,MAAM,OAAO;AAC9B,WAAO,MAAM,QAAQ,IAAK,UAAwB,IAAI,aAAW,KAAK,QAAQ,OAAO,CAAC,CAAC;AAAA,EACzF;AAAA,EAEA,MAAM,SAAS,IAAsB,SAAqD;AACxF,UAAM,gBAAqC;AAAA,MACzC;AAAA,MAAI,QAAQ;AAAA,MAA2B,GAAG;AAAA,IAC5C;AACA,YACE,MAAM,KAAK,UAAoE,EAAE,QAAQ,0BAA0B,GAAG,CAAC,aAAa,CAAC,GACrI,IAAI,CAAC,EAAE,QAAQ,MAAM,OAAO;AAAA,EAChC;AACF;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/bridge-wrapper",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xylabs/hex": "^4.5.1",
|
|
33
|
-
"@xyo-network/bridge-model": "^3.8.
|
|
34
|
-
"@xyo-network/module-model": "^3.8.
|
|
35
|
-
"@xyo-network/module-wrapper": "^3.8.
|
|
33
|
+
"@xyo-network/bridge-model": "^3.8.1",
|
|
34
|
+
"@xyo-network/module-model": "^3.8.1",
|
|
35
|
+
"@xyo-network/module-wrapper": "^3.8.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
39
|
-
"@xylabs/tsconfig": "^
|
|
38
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.22",
|
|
39
|
+
"@xylabs/tsconfig": "^5.0.22",
|
|
40
40
|
"typescript": "^5.7.3"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
package/src/BridgeWrapper.ts
CHANGED
|
@@ -24,8 +24,8 @@ constructableModuleWrapper()
|
|
|
24
24
|
export class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeModule>
|
|
25
25
|
extends ModuleWrapper<TWrappedModule>
|
|
26
26
|
implements BridgeInstance<TWrappedModule['params']> {
|
|
27
|
-
static override instanceIdentityCheck = isBridgeInstance
|
|
28
|
-
static override moduleIdentityCheck = isBridgeModule
|
|
27
|
+
static override readonly instanceIdentityCheck = isBridgeInstance
|
|
28
|
+
static override readonly moduleIdentityCheck = isBridgeModule
|
|
29
29
|
|
|
30
30
|
async expose(id: ModuleIdentifier, options?: BridgeExposeOptions): Promise<ModuleInstance[]> {
|
|
31
31
|
const filterPayload: ModuleFilterPayload = {
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
import type { Address } from '@xylabs/hex';
|
|
2
|
-
import type { BridgeExposeOptions, BridgeInstance, BridgeModule, BridgeUnexposeOptions } from '@xyo-network/bridge-model';
|
|
3
|
-
import type { ModuleIdentifier, ModuleInstance } from '@xyo-network/module-model';
|
|
4
|
-
import { ModuleWrapper } from '@xyo-network/module-wrapper';
|
|
5
|
-
export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeModule> extends ModuleWrapper<TWrappedModule> implements BridgeInstance<TWrappedModule['params']> {
|
|
6
|
-
static instanceIdentityCheck: import("@xylabs/object").TypeCheck<BridgeInstance<import("@xyo-network/bridge-model").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
7
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
8
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
9
|
-
client?: {
|
|
10
|
-
cache?: true | {
|
|
11
|
-
max?: number | undefined;
|
|
12
|
-
maxSize?: number | undefined;
|
|
13
|
-
ttl?: number | undefined;
|
|
14
|
-
} | undefined;
|
|
15
|
-
discoverRoots?: "start" | "lazy" | undefined;
|
|
16
|
-
maxDepth?: number | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
discoverRoots?: "start" | "lazy" | undefined;
|
|
19
|
-
host?: {
|
|
20
|
-
cache?: true | {
|
|
21
|
-
max?: number | undefined;
|
|
22
|
-
maxSize?: number | undefined;
|
|
23
|
-
ttl?: number | undefined;
|
|
24
|
-
} | undefined;
|
|
25
|
-
maxDepth?: number | undefined;
|
|
26
|
-
} | undefined;
|
|
27
|
-
readonly archiving?: {
|
|
28
|
-
readonly archivists?: string[] | undefined;
|
|
29
|
-
readonly queries?: string[] | undefined;
|
|
30
|
-
} | undefined;
|
|
31
|
-
readonly allowedQueries?: string[] | undefined;
|
|
32
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
33
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
34
|
-
readonly labels?: {
|
|
35
|
-
[x: string]: string | undefined;
|
|
36
|
-
} | undefined;
|
|
37
|
-
readonly paging?: {
|
|
38
|
-
[x: string]: {
|
|
39
|
-
size?: number | undefined;
|
|
40
|
-
};
|
|
41
|
-
} | undefined;
|
|
42
|
-
readonly retry?: {
|
|
43
|
-
backoff?: number | undefined;
|
|
44
|
-
interval?: number | undefined;
|
|
45
|
-
retries?: number | undefined;
|
|
46
|
-
} | undefined;
|
|
47
|
-
readonly security?: {
|
|
48
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
49
|
-
readonly allowed?: {
|
|
50
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
51
|
-
} | undefined;
|
|
52
|
-
readonly disallowed?: {
|
|
53
|
-
[x: string]: Lowercase<string>[];
|
|
54
|
-
} | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
readonly sign?: boolean | undefined;
|
|
57
|
-
readonly storeQueries?: boolean | undefined;
|
|
58
|
-
readonly timestamp?: boolean | undefined;
|
|
59
|
-
}>>, import("@xyo-network/bridge-model").BridgeModuleEventData>>;
|
|
60
|
-
static moduleIdentityCheck: import("@xyo-network/module-model").ModuleTypeCheck<BridgeModule<import("@xyo-network/bridge-model").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
61
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
62
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
63
|
-
client?: {
|
|
64
|
-
cache?: true | {
|
|
65
|
-
max?: number | undefined;
|
|
66
|
-
maxSize?: number | undefined;
|
|
67
|
-
ttl?: number | undefined;
|
|
68
|
-
} | undefined;
|
|
69
|
-
discoverRoots?: "start" | "lazy" | undefined;
|
|
70
|
-
maxDepth?: number | undefined;
|
|
71
|
-
} | undefined;
|
|
72
|
-
discoverRoots?: "start" | "lazy" | undefined;
|
|
73
|
-
host?: {
|
|
74
|
-
cache?: true | {
|
|
75
|
-
max?: number | undefined;
|
|
76
|
-
maxSize?: number | undefined;
|
|
77
|
-
ttl?: number | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
maxDepth?: number | undefined;
|
|
80
|
-
} | undefined;
|
|
81
|
-
readonly archiving?: {
|
|
82
|
-
readonly archivists?: string[] | undefined;
|
|
83
|
-
readonly queries?: string[] | undefined;
|
|
84
|
-
} | undefined;
|
|
85
|
-
readonly allowedQueries?: string[] | undefined;
|
|
86
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
87
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
88
|
-
readonly labels?: {
|
|
89
|
-
[x: string]: string | undefined;
|
|
90
|
-
} | undefined;
|
|
91
|
-
readonly paging?: {
|
|
92
|
-
[x: string]: {
|
|
93
|
-
size?: number | undefined;
|
|
94
|
-
};
|
|
95
|
-
} | undefined;
|
|
96
|
-
readonly retry?: {
|
|
97
|
-
backoff?: number | undefined;
|
|
98
|
-
interval?: number | undefined;
|
|
99
|
-
retries?: number | undefined;
|
|
100
|
-
} | undefined;
|
|
101
|
-
readonly security?: {
|
|
102
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
103
|
-
readonly allowed?: {
|
|
104
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
105
|
-
} | undefined;
|
|
106
|
-
readonly disallowed?: {
|
|
107
|
-
[x: string]: Lowercase<string>[];
|
|
108
|
-
} | undefined;
|
|
109
|
-
} | undefined;
|
|
110
|
-
readonly sign?: boolean | undefined;
|
|
111
|
-
readonly storeQueries?: boolean | undefined;
|
|
112
|
-
readonly timestamp?: boolean | undefined;
|
|
113
|
-
}>>, import("@xyo-network/bridge-model").BridgeModuleEventData>>;
|
|
114
|
-
expose(id: ModuleIdentifier, options?: BridgeExposeOptions): Promise<ModuleInstance[]>;
|
|
115
|
-
unexpose(id: ModuleIdentifier, options?: BridgeUnexposeOptions): Promise<Address[]>;
|
|
116
|
-
}
|
|
117
|
-
//# sourceMappingURL=BridgeWrapper.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BridgeWrapper.d.ts","sourceRoot":"","sources":["../../src/BridgeWrapper.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAC1C,OAAO,KAAK,EACV,mBAAmB,EAEnB,cAAc,EACd,YAAY,EACZ,qBAAqB,EAGtB,MAAM,2BAA2B,CAAA;AAQlC,OAAO,KAAK,EACM,gBAAgB,EAAE,cAAc,EACjD,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAA8B,aAAa,EAAE,MAAM,6BAA6B,CAAA;AAGvF,qBAAa,aAAa,CAAC,cAAc,SAAS,YAAY,GAAG,YAAY,CAC3E,SAAQ,aAAa,CAAC,cAAc,CACpC,YAAW,cAAc,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;IACnD,OAAgB,qBAAqB;uBAdnB,4BACD;+BAED,2BACF;;iBAEK,CAAC;mBAA0B,CAAC;uBAE9C,CAAC;mBAAqC,CAAC;;yBAEvB,CAAC;oBACmB,CAAC;;;;iBAEF,CAAC;mBAC9B,CAAC;uBAAyC,CAAC;mBACtB,CAAC;;oBAEM,CAAA;;;+BACF,CAAC;4BACD,CAAC;;;oCAGwC,2BAA2B;wCACrE,gBACpB;;;;;;oBAGyE,CAAC;;;;mBAErD,CAAC;oBAEzB,CAAC;mBACwB,CAAC;;;mCAAkG,CAAC;4BAIxI,CAAC;;;+BAA4H,CAAC;;;;;;;qEAtBpE;IACxD,OAAgB,mBAAmB;uBAqBokB,4BAA4B;+BAAqC,2BAA2B;;iBAAsD,CAAC;mBAA0B,CAAC;uBAAyC,CAAC;mBAAqC,CAAC;;yBAAkE,CAAC;oBAAgD,CAAC;;;;iBAAqH,CAAC;mBAA0B,CAAC;uBAAyC,CAAC;mBAAqC,CAAC;;oBAA6D,CAAC;;;+BAA+F,CAAC;4BAAgD,CAAC;;;oCAA+H,2BAA2B;wCAAoE,gBAAgB;;;;;;oBAA2K,CAAC;;;;mBAA0F,CAAC;oBAAsC,CAAC;mBAAqC,CAAC;;;mCAAkG,CAAC;4BAA+C,CAAC;;;+BAA4H,CAAC;;;;;;;qEArBvqE;IAE9C,MAAM,CAAC,EAAE,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;IAUtF,QAAQ,CAAC,EAAE,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC;CAQ1F"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA"}
|