@dhilipsiva/nf_ndc_connect_public 0.2.2
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/README.md +3 -0
- package/nf_ndc_connect_public.d.ts +51 -0
- package/nf_ndc_connect_public.js +334 -0
- package/nf_ndc_connect_public_bg.wasm +0 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
|
|
4
|
+
export class IdpAuthHelper {
|
|
5
|
+
free(): void;
|
|
6
|
+
[Symbol.dispose](): void;
|
|
7
|
+
getOrgAuthorisations(jwt: string): any;
|
|
8
|
+
hasPermission(jwt: string, org_id: string, perm_name: string): boolean;
|
|
9
|
+
hasRole(jwt: string, org_id: string, role_name: string): boolean;
|
|
10
|
+
isValid(jwt: string): boolean;
|
|
11
|
+
constructor(public_key_pem: string);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
15
|
+
|
|
16
|
+
export interface InitOutput {
|
|
17
|
+
readonly memory: WebAssembly.Memory;
|
|
18
|
+
readonly __wbg_idpauthhelper_free: (a: number, b: number) => void;
|
|
19
|
+
readonly idpauthhelper_getOrgAuthorisations: (a: number, b: number, c: number) => [number, number, number];
|
|
20
|
+
readonly idpauthhelper_hasPermission: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => number;
|
|
21
|
+
readonly idpauthhelper_hasRole: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => number;
|
|
22
|
+
readonly idpauthhelper_isValid: (a: number, b: number, c: number) => number;
|
|
23
|
+
readonly idpauthhelper_new: (a: number, b: number) => [number, number, number];
|
|
24
|
+
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
25
|
+
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
26
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
27
|
+
readonly __externref_table_dealloc: (a: number) => void;
|
|
28
|
+
readonly __wbindgen_start: () => void;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
35
|
+
* a precompiled `WebAssembly.Module`.
|
|
36
|
+
*
|
|
37
|
+
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
38
|
+
*
|
|
39
|
+
* @returns {InitOutput}
|
|
40
|
+
*/
|
|
41
|
+
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
45
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
46
|
+
*
|
|
47
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
48
|
+
*
|
|
49
|
+
* @returns {Promise<InitOutput>}
|
|
50
|
+
*/
|
|
51
|
+
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
/* @ts-self-types="./nf_ndc_connect_public.d.ts" */
|
|
2
|
+
|
|
3
|
+
export class IdpAuthHelper {
|
|
4
|
+
__destroy_into_raw() {
|
|
5
|
+
const ptr = this.__wbg_ptr;
|
|
6
|
+
this.__wbg_ptr = 0;
|
|
7
|
+
IdpAuthHelperFinalization.unregister(this);
|
|
8
|
+
return ptr;
|
|
9
|
+
}
|
|
10
|
+
free() {
|
|
11
|
+
const ptr = this.__destroy_into_raw();
|
|
12
|
+
wasm.__wbg_idpauthhelper_free(ptr, 0);
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @param {string} jwt
|
|
16
|
+
* @returns {any}
|
|
17
|
+
*/
|
|
18
|
+
getOrgAuthorisations(jwt) {
|
|
19
|
+
const ptr0 = passStringToWasm0(jwt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
20
|
+
const len0 = WASM_VECTOR_LEN;
|
|
21
|
+
const ret = wasm.idpauthhelper_getOrgAuthorisations(this.__wbg_ptr, ptr0, len0);
|
|
22
|
+
if (ret[2]) {
|
|
23
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
24
|
+
}
|
|
25
|
+
return takeFromExternrefTable0(ret[0]);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @param {string} jwt
|
|
29
|
+
* @param {string} org_id
|
|
30
|
+
* @param {string} perm_name
|
|
31
|
+
* @returns {boolean}
|
|
32
|
+
*/
|
|
33
|
+
hasPermission(jwt, org_id, perm_name) {
|
|
34
|
+
const ptr0 = passStringToWasm0(jwt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
35
|
+
const len0 = WASM_VECTOR_LEN;
|
|
36
|
+
const ptr1 = passStringToWasm0(org_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
37
|
+
const len1 = WASM_VECTOR_LEN;
|
|
38
|
+
const ptr2 = passStringToWasm0(perm_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
39
|
+
const len2 = WASM_VECTOR_LEN;
|
|
40
|
+
const ret = wasm.idpauthhelper_hasPermission(this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2);
|
|
41
|
+
return ret !== 0;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @param {string} jwt
|
|
45
|
+
* @param {string} org_id
|
|
46
|
+
* @param {string} role_name
|
|
47
|
+
* @returns {boolean}
|
|
48
|
+
*/
|
|
49
|
+
hasRole(jwt, org_id, role_name) {
|
|
50
|
+
const ptr0 = passStringToWasm0(jwt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
51
|
+
const len0 = WASM_VECTOR_LEN;
|
|
52
|
+
const ptr1 = passStringToWasm0(org_id, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
53
|
+
const len1 = WASM_VECTOR_LEN;
|
|
54
|
+
const ptr2 = passStringToWasm0(role_name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
55
|
+
const len2 = WASM_VECTOR_LEN;
|
|
56
|
+
const ret = wasm.idpauthhelper_hasRole(this.__wbg_ptr, ptr0, len0, ptr1, len1, ptr2, len2);
|
|
57
|
+
return ret !== 0;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* @param {string} jwt
|
|
61
|
+
* @returns {boolean}
|
|
62
|
+
*/
|
|
63
|
+
isValid(jwt) {
|
|
64
|
+
const ptr0 = passStringToWasm0(jwt, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
65
|
+
const len0 = WASM_VECTOR_LEN;
|
|
66
|
+
const ret = wasm.idpauthhelper_isValid(this.__wbg_ptr, ptr0, len0);
|
|
67
|
+
return ret !== 0;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @param {string} public_key_pem
|
|
71
|
+
*/
|
|
72
|
+
constructor(public_key_pem) {
|
|
73
|
+
const ptr0 = passStringToWasm0(public_key_pem, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
74
|
+
const len0 = WASM_VECTOR_LEN;
|
|
75
|
+
const ret = wasm.idpauthhelper_new(ptr0, len0);
|
|
76
|
+
if (ret[2]) {
|
|
77
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
78
|
+
}
|
|
79
|
+
this.__wbg_ptr = ret[0] >>> 0;
|
|
80
|
+
IdpAuthHelperFinalization.register(this, this.__wbg_ptr, this);
|
|
81
|
+
return this;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
if (Symbol.dispose) IdpAuthHelper.prototype[Symbol.dispose] = IdpAuthHelper.prototype.free;
|
|
85
|
+
|
|
86
|
+
function __wbg_get_imports() {
|
|
87
|
+
const import0 = {
|
|
88
|
+
__proto__: null,
|
|
89
|
+
__wbg_Error_8c4e43fe74559d73: function(arg0, arg1) {
|
|
90
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
91
|
+
return ret;
|
|
92
|
+
},
|
|
93
|
+
__wbg_String_8f0eb39a4a4c2f66: function(arg0, arg1) {
|
|
94
|
+
const ret = String(arg1);
|
|
95
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
96
|
+
const len1 = WASM_VECTOR_LEN;
|
|
97
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
98
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
99
|
+
},
|
|
100
|
+
__wbg___wbindgen_throw_be289d5034ed271b: function(arg0, arg1) {
|
|
101
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
102
|
+
},
|
|
103
|
+
__wbg_getTime_1e3cd1391c5c3995: function(arg0) {
|
|
104
|
+
const ret = arg0.getTime();
|
|
105
|
+
return ret;
|
|
106
|
+
},
|
|
107
|
+
__wbg_new_0_73afc35eb544e539: function() {
|
|
108
|
+
const ret = new Date();
|
|
109
|
+
return ret;
|
|
110
|
+
},
|
|
111
|
+
__wbg_new_361308b2356cecd0: function() {
|
|
112
|
+
const ret = new Object();
|
|
113
|
+
return ret;
|
|
114
|
+
},
|
|
115
|
+
__wbg_new_3eb36ae241fe6f44: function() {
|
|
116
|
+
const ret = new Array();
|
|
117
|
+
return ret;
|
|
118
|
+
},
|
|
119
|
+
__wbg_set_3f1d0b984ed272ed: function(arg0, arg1, arg2) {
|
|
120
|
+
arg0[arg1] = arg2;
|
|
121
|
+
},
|
|
122
|
+
__wbg_set_f43e577aea94465b: function(arg0, arg1, arg2) {
|
|
123
|
+
arg0[arg1 >>> 0] = arg2;
|
|
124
|
+
},
|
|
125
|
+
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
126
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
127
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
128
|
+
return ret;
|
|
129
|
+
},
|
|
130
|
+
__wbindgen_init_externref_table: function() {
|
|
131
|
+
const table = wasm.__wbindgen_externrefs;
|
|
132
|
+
const offset = table.grow(4);
|
|
133
|
+
table.set(0, undefined);
|
|
134
|
+
table.set(offset + 0, undefined);
|
|
135
|
+
table.set(offset + 1, null);
|
|
136
|
+
table.set(offset + 2, true);
|
|
137
|
+
table.set(offset + 3, false);
|
|
138
|
+
},
|
|
139
|
+
};
|
|
140
|
+
return {
|
|
141
|
+
__proto__: null,
|
|
142
|
+
"./nf_ndc_connect_public_bg.js": import0,
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
const IdpAuthHelperFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
147
|
+
? { register: () => {}, unregister: () => {} }
|
|
148
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_idpauthhelper_free(ptr >>> 0, 1));
|
|
149
|
+
|
|
150
|
+
let cachedDataViewMemory0 = null;
|
|
151
|
+
function getDataViewMemory0() {
|
|
152
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
153
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
154
|
+
}
|
|
155
|
+
return cachedDataViewMemory0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function getStringFromWasm0(ptr, len) {
|
|
159
|
+
ptr = ptr >>> 0;
|
|
160
|
+
return decodeText(ptr, len);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
let cachedUint8ArrayMemory0 = null;
|
|
164
|
+
function getUint8ArrayMemory0() {
|
|
165
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
166
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
167
|
+
}
|
|
168
|
+
return cachedUint8ArrayMemory0;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
172
|
+
if (realloc === undefined) {
|
|
173
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
174
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
175
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
176
|
+
WASM_VECTOR_LEN = buf.length;
|
|
177
|
+
return ptr;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
let len = arg.length;
|
|
181
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
182
|
+
|
|
183
|
+
const mem = getUint8ArrayMemory0();
|
|
184
|
+
|
|
185
|
+
let offset = 0;
|
|
186
|
+
|
|
187
|
+
for (; offset < len; offset++) {
|
|
188
|
+
const code = arg.charCodeAt(offset);
|
|
189
|
+
if (code > 0x7F) break;
|
|
190
|
+
mem[ptr + offset] = code;
|
|
191
|
+
}
|
|
192
|
+
if (offset !== len) {
|
|
193
|
+
if (offset !== 0) {
|
|
194
|
+
arg = arg.slice(offset);
|
|
195
|
+
}
|
|
196
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
197
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
198
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
199
|
+
|
|
200
|
+
offset += ret.written;
|
|
201
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
WASM_VECTOR_LEN = offset;
|
|
205
|
+
return ptr;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
function takeFromExternrefTable0(idx) {
|
|
209
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
210
|
+
wasm.__externref_table_dealloc(idx);
|
|
211
|
+
return value;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
215
|
+
cachedTextDecoder.decode();
|
|
216
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
217
|
+
let numBytesDecoded = 0;
|
|
218
|
+
function decodeText(ptr, len) {
|
|
219
|
+
numBytesDecoded += len;
|
|
220
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
221
|
+
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
222
|
+
cachedTextDecoder.decode();
|
|
223
|
+
numBytesDecoded = len;
|
|
224
|
+
}
|
|
225
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
const cachedTextEncoder = new TextEncoder();
|
|
229
|
+
|
|
230
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
231
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
232
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
233
|
+
view.set(buf);
|
|
234
|
+
return {
|
|
235
|
+
read: arg.length,
|
|
236
|
+
written: buf.length
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
let WASM_VECTOR_LEN = 0;
|
|
242
|
+
|
|
243
|
+
let wasmModule, wasm;
|
|
244
|
+
function __wbg_finalize_init(instance, module) {
|
|
245
|
+
wasm = instance.exports;
|
|
246
|
+
wasmModule = module;
|
|
247
|
+
cachedDataViewMemory0 = null;
|
|
248
|
+
cachedUint8ArrayMemory0 = null;
|
|
249
|
+
wasm.__wbindgen_start();
|
|
250
|
+
return wasm;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
async function __wbg_load(module, imports) {
|
|
254
|
+
if (typeof Response === 'function' && module instanceof Response) {
|
|
255
|
+
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
256
|
+
try {
|
|
257
|
+
return await WebAssembly.instantiateStreaming(module, imports);
|
|
258
|
+
} catch (e) {
|
|
259
|
+
const validResponse = module.ok && expectedResponseType(module.type);
|
|
260
|
+
|
|
261
|
+
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
|
262
|
+
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
263
|
+
|
|
264
|
+
} else { throw e; }
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
const bytes = await module.arrayBuffer();
|
|
269
|
+
return await WebAssembly.instantiate(bytes, imports);
|
|
270
|
+
} else {
|
|
271
|
+
const instance = await WebAssembly.instantiate(module, imports);
|
|
272
|
+
|
|
273
|
+
if (instance instanceof WebAssembly.Instance) {
|
|
274
|
+
return { instance, module };
|
|
275
|
+
} else {
|
|
276
|
+
return instance;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
function expectedResponseType(type) {
|
|
281
|
+
switch (type) {
|
|
282
|
+
case 'basic': case 'cors': case 'default': return true;
|
|
283
|
+
}
|
|
284
|
+
return false;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
function initSync(module) {
|
|
289
|
+
if (wasm !== undefined) return wasm;
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
if (module !== undefined) {
|
|
293
|
+
if (Object.getPrototypeOf(module) === Object.prototype) {
|
|
294
|
+
({module} = module)
|
|
295
|
+
} else {
|
|
296
|
+
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
const imports = __wbg_get_imports();
|
|
301
|
+
if (!(module instanceof WebAssembly.Module)) {
|
|
302
|
+
module = new WebAssembly.Module(module);
|
|
303
|
+
}
|
|
304
|
+
const instance = new WebAssembly.Instance(module, imports);
|
|
305
|
+
return __wbg_finalize_init(instance, module);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
async function __wbg_init(module_or_path) {
|
|
309
|
+
if (wasm !== undefined) return wasm;
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
if (module_or_path !== undefined) {
|
|
313
|
+
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
|
|
314
|
+
({module_or_path} = module_or_path)
|
|
315
|
+
} else {
|
|
316
|
+
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
if (module_or_path === undefined) {
|
|
321
|
+
module_or_path = new URL('nf_ndc_connect_public_bg.wasm', import.meta.url);
|
|
322
|
+
}
|
|
323
|
+
const imports = __wbg_get_imports();
|
|
324
|
+
|
|
325
|
+
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
|
326
|
+
module_or_path = fetch(module_or_path);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
|
330
|
+
|
|
331
|
+
return __wbg_finalize_init(instance, module);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export { initSync, __wbg_init as default };
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dhilipsiva/nf_ndc_connect_public",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"description": "Shared IDP Claims & Auth Logic for Rust, Python (Maturin), and Wasm (Wasm-Pack)",
|
|
5
|
+
"version": "0.2.2",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/NuFlights/nf_ndc_connect_public"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"nf_ndc_connect_public_bg.wasm",
|
|
13
|
+
"nf_ndc_connect_public.js",
|
|
14
|
+
"nf_ndc_connect_public.d.ts"
|
|
15
|
+
],
|
|
16
|
+
"main": "nf_ndc_connect_public.js",
|
|
17
|
+
"types": "nf_ndc_connect_public.d.ts",
|
|
18
|
+
"sideEffects": [
|
|
19
|
+
"./snippets/*"
|
|
20
|
+
]
|
|
21
|
+
}
|