quidproquo-web 0.0.253 → 0.0.255
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/lib/commonjs/actions/index.d.ts +1 -0
- package/lib/commonjs/actions/index.js +17 -0
- package/lib/commonjs/actions/queryParams/QueryParamsActionType.d.ts +5 -0
- package/lib/commonjs/actions/queryParams/QueryParamsActionType.js +9 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetActionRequester.d.ts +2 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetActionRequester.js +7 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetActionRequesterTypes.d.ts +11 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetActionRequesterTypes.js +2 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetAllActionRequester.d.ts +2 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetAllActionRequester.js +7 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetAllActionRequesterTypes.d.ts +8 -0
- package/lib/commonjs/actions/queryParams/QueryParamsGetAllActionRequesterTypes.js +2 -0
- package/lib/commonjs/actions/queryParams/QueryParamsSetActionRequester.d.ts +2 -0
- package/lib/commonjs/actions/queryParams/QueryParamsSetActionRequester.js +7 -0
- package/lib/commonjs/actions/queryParams/QueryParamsSetActionRequesterTypes.d.ts +13 -0
- package/lib/commonjs/actions/queryParams/QueryParamsSetActionRequesterTypes.js +2 -0
- package/lib/commonjs/actions/queryParams/index.d.ts +7 -0
- package/lib/commonjs/actions/queryParams/index.js +23 -0
- package/lib/commonjs/auth/exchangeOauth2TokenForAccessToken.d.ts +6 -6
- package/lib/commonjs/auth/exchangeOauth2TokenForAccessToken.js +26 -27
- package/lib/commonjs/auth/index.d.ts +1 -1
- package/lib/commonjs/auth/index.js +17 -17
- package/lib/commonjs/index.d.ts +5 -4
- package/lib/commonjs/index.js +21 -20
- package/lib/commonjs/request/index.d.ts +1 -1
- package/lib/commonjs/request/index.js +17 -17
- package/lib/commonjs/request/preformNetworkRequest.d.ts +2 -2
- package/lib/commonjs/request/preformNetworkRequest.js +155 -155
- package/lib/commonjs/services/WebsocketService.d.ts +43 -43
- package/lib/commonjs/services/WebsocketService.js +152 -152
- package/lib/commonjs/services/index.d.ts +1 -1
- package/lib/commonjs/services/index.js +17 -17
- package/lib/commonjs/tools/index.d.ts +1 -1
- package/lib/commonjs/tools/index.js +17 -17
- package/lib/commonjs/tools/uniqueBy.d.ts +1 -1
- package/lib/commonjs/tools/uniqueBy.js +14 -15
- package/lib/esm/actions/index.d.ts +1 -0
- package/lib/esm/actions/index.js +1 -0
- package/lib/esm/actions/queryParams/QueryParamsActionType.d.ts +5 -0
- package/lib/esm/actions/queryParams/QueryParamsActionType.js +6 -0
- package/lib/esm/actions/queryParams/QueryParamsGetActionRequester.d.ts +2 -0
- package/lib/esm/actions/queryParams/QueryParamsGetActionRequester.js +4 -0
- package/lib/esm/actions/queryParams/QueryParamsGetActionRequesterTypes.d.ts +11 -0
- package/lib/esm/actions/queryParams/QueryParamsGetActionRequesterTypes.js +1 -0
- package/lib/esm/actions/queryParams/QueryParamsGetAllActionRequester.d.ts +2 -0
- package/lib/esm/actions/queryParams/QueryParamsGetAllActionRequester.js +4 -0
- package/lib/esm/actions/queryParams/QueryParamsGetAllActionRequesterTypes.d.ts +8 -0
- package/lib/esm/actions/queryParams/QueryParamsGetAllActionRequesterTypes.js +1 -0
- package/lib/esm/actions/queryParams/QueryParamsSetActionRequester.d.ts +2 -0
- package/lib/esm/actions/queryParams/QueryParamsSetActionRequester.js +4 -0
- package/lib/esm/actions/queryParams/QueryParamsSetActionRequesterTypes.d.ts +13 -0
- package/lib/esm/actions/queryParams/QueryParamsSetActionRequesterTypes.js +1 -0
- package/lib/esm/actions/queryParams/index.d.ts +7 -0
- package/lib/esm/actions/queryParams/index.js +7 -0
- package/lib/esm/auth/exchangeOauth2TokenForAccessToken.d.ts +6 -6
- package/lib/esm/auth/exchangeOauth2TokenForAccessToken.js +12 -12
- package/lib/esm/auth/index.d.ts +1 -1
- package/lib/esm/auth/index.js +1 -1
- package/lib/esm/index.d.ts +5 -4
- package/lib/esm/index.js +5 -4
- package/lib/esm/request/index.d.ts +1 -1
- package/lib/esm/request/index.js +1 -1
- package/lib/esm/request/preformNetworkRequest.d.ts +2 -2
- package/lib/esm/request/preformNetworkRequest.js +141 -141
- package/lib/esm/services/WebsocketService.d.ts +43 -43
- package/lib/esm/services/WebsocketService.js +145 -145
- package/lib/esm/services/index.d.ts +1 -1
- package/lib/esm/services/index.js +1 -1
- package/lib/esm/tools/index.d.ts +1 -1
- package/lib/esm/tools/index.js +1 -1
- package/lib/esm/tools/uniqueBy.d.ts +1 -1
- package/lib/esm/tools/uniqueBy.js +11 -11
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './queryParams';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./queryParams"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QueryParamsActionType = void 0;
|
|
4
|
+
var QueryParamsActionType;
|
|
5
|
+
(function (QueryParamsActionType) {
|
|
6
|
+
QueryParamsActionType["Get"] = "@quidproquo-web/QueryParams/Get";
|
|
7
|
+
QueryParamsActionType["GetAll"] = "@quidproquo-web/QueryParams/GetAll";
|
|
8
|
+
QueryParamsActionType["Set"] = "@quidproquo-web/QueryParams/Set";
|
|
9
|
+
})(QueryParamsActionType || (exports.QueryParamsActionType = QueryParamsActionType = {}));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.askQueryParamsGet = askQueryParamsGet;
|
|
4
|
+
const QueryParamsActionType_1 = require("./QueryParamsActionType");
|
|
5
|
+
function* askQueryParamsGet(key) {
|
|
6
|
+
return yield { type: QueryParamsActionType_1.QueryParamsActionType.Get, payload: { key } };
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Action, ActionProcessor, ActionRequester } from 'quidproquo-core';
|
|
2
|
+
import { QueryParamsActionType } from './QueryParamsActionType';
|
|
3
|
+
export type QueryParamsGetActionPayload = {
|
|
4
|
+
key: string;
|
|
5
|
+
};
|
|
6
|
+
export interface QueryParamsGetAction extends Action<QueryParamsGetActionPayload> {
|
|
7
|
+
type: QueryParamsActionType.Get;
|
|
8
|
+
payload: QueryParamsGetActionPayload;
|
|
9
|
+
}
|
|
10
|
+
export type QueryParamsGetActionProcessor = ActionProcessor<QueryParamsGetAction, string[]>;
|
|
11
|
+
export type QueryParamsGetActionRequester = ActionRequester<QueryParamsGetAction, string[]>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.askQueryParamsGetAll = askQueryParamsGetAll;
|
|
4
|
+
const QueryParamsActionType_1 = require("./QueryParamsActionType");
|
|
5
|
+
function* askQueryParamsGetAll() {
|
|
6
|
+
return yield { type: QueryParamsActionType_1.QueryParamsActionType.GetAll };
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Action, ActionProcessor, ActionRequester } from 'quidproquo-core';
|
|
2
|
+
import { QueryParamsActionType } from './QueryParamsActionType';
|
|
3
|
+
export type QueryParamsGetAllActionPayload = undefined;
|
|
4
|
+
export interface QueryParamsGetAllAction extends Action<QueryParamsGetAllActionPayload> {
|
|
5
|
+
type: QueryParamsActionType.GetAll;
|
|
6
|
+
}
|
|
7
|
+
export type QueryParamsGetAllActionProcessor = ActionProcessor<QueryParamsGetAllAction, Record<string, string[]>>;
|
|
8
|
+
export type QueryParamsGetAllActionRequester = ActionRequester<QueryParamsGetAllAction, Record<string, string[]>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.askQueryParamsSet = askQueryParamsSet;
|
|
4
|
+
const QueryParamsActionType_1 = require("./QueryParamsActionType");
|
|
5
|
+
function* askQueryParamsSet(key, values, createHistoryEntry = false) {
|
|
6
|
+
return yield { type: QueryParamsActionType_1.QueryParamsActionType.Set, payload: { key, values, createHistoryEntry } };
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Action, ActionProcessor, ActionRequester } from 'quidproquo-core';
|
|
2
|
+
import { QueryParamsActionType } from './QueryParamsActionType';
|
|
3
|
+
export type QueryParamsSetActionPayload = {
|
|
4
|
+
key: string;
|
|
5
|
+
values: string[];
|
|
6
|
+
createHistoryEntry: boolean;
|
|
7
|
+
};
|
|
8
|
+
export interface QueryParamsSetAction extends Action<QueryParamsSetActionPayload> {
|
|
9
|
+
type: QueryParamsActionType.Set;
|
|
10
|
+
payload: QueryParamsSetActionPayload;
|
|
11
|
+
}
|
|
12
|
+
export type QueryParamsSetActionProcessor = ActionProcessor<QueryParamsSetAction, void>;
|
|
13
|
+
export type QueryParamsSetActionRequester = ActionRequester<QueryParamsSetAction, void>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './QueryParamsActionType';
|
|
2
|
+
export * from './QueryParamsGetActionRequester';
|
|
3
|
+
export * from './QueryParamsGetActionRequesterTypes';
|
|
4
|
+
export * from './QueryParamsGetAllActionRequester';
|
|
5
|
+
export * from './QueryParamsGetAllActionRequesterTypes';
|
|
6
|
+
export * from './QueryParamsSetActionRequester';
|
|
7
|
+
export * from './QueryParamsSetActionRequesterTypes';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./QueryParamsActionType"), exports);
|
|
18
|
+
__exportStar(require("./QueryParamsGetActionRequester"), exports);
|
|
19
|
+
__exportStar(require("./QueryParamsGetActionRequesterTypes"), exports);
|
|
20
|
+
__exportStar(require("./QueryParamsGetAllActionRequester"), exports);
|
|
21
|
+
__exportStar(require("./QueryParamsGetAllActionRequesterTypes"), exports);
|
|
22
|
+
__exportStar(require("./QueryParamsSetActionRequester"), exports);
|
|
23
|
+
__exportStar(require("./QueryParamsSetActionRequesterTypes"), exports);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare function exchangeOauth2TokenForAccessToken(code: string, authDomain: string): Promise<string | undefined>;
|
|
2
|
-
declare global {
|
|
3
|
-
interface Window {
|
|
4
|
-
exchangeOauth2TokenForAccessToken: any;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
1
|
+
export declare function exchangeOauth2TokenForAccessToken(code: string, authDomain: string): Promise<string | undefined>;
|
|
2
|
+
declare global {
|
|
3
|
+
interface Window {
|
|
4
|
+
exchangeOauth2TokenForAccessToken: any;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
@@ -1,27 +1,26 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.exchangeOauth2TokenForAccessToken =
|
|
13
|
-
const request_1 = require("../request");
|
|
14
|
-
function exchangeOauth2TokenForAccessToken(code, authDomain) {
|
|
15
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
16
|
-
const oAuth2Url = `https://${authDomain}/oauth2/token/${code}`;
|
|
17
|
-
const result = yield (0, request_1.preformNetworkRequest)({
|
|
18
|
-
method: 'POST',
|
|
19
|
-
url: oAuth2Url,
|
|
20
|
-
responseType: 'json',
|
|
21
|
-
});
|
|
22
|
-
console.log('result: ', result);
|
|
23
|
-
return result.data.accessToken;
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
window.exchangeOauth2TokenForAccessToken = exchangeOauth2TokenForAccessToken;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.exchangeOauth2TokenForAccessToken = exchangeOauth2TokenForAccessToken;
|
|
13
|
+
const request_1 = require("../request");
|
|
14
|
+
function exchangeOauth2TokenForAccessToken(code, authDomain) {
|
|
15
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
16
|
+
const oAuth2Url = `https://${authDomain}/oauth2/token/${code}`;
|
|
17
|
+
const result = yield (0, request_1.preformNetworkRequest)({
|
|
18
|
+
method: 'POST',
|
|
19
|
+
url: oAuth2Url,
|
|
20
|
+
responseType: 'json',
|
|
21
|
+
});
|
|
22
|
+
console.log('result: ', result);
|
|
23
|
+
return result.data.accessToken;
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
window.exchangeOauth2TokenForAccessToken = exchangeOauth2TokenForAccessToken;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './exchangeOauth2TokenForAccessToken';
|
|
1
|
+
export * from './exchangeOauth2TokenForAccessToken';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./exchangeOauth2TokenForAccessToken"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./exchangeOauth2TokenForAccessToken"), exports);
|
package/lib/commonjs/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
1
|
+
export * from './actions';
|
|
2
|
+
export * from './auth';
|
|
3
|
+
export * from './request';
|
|
4
|
+
export * from './services';
|
|
5
|
+
export * from './tools';
|
package/lib/commonjs/index.js
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./
|
|
20
|
-
__exportStar(require("./
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./actions"), exports);
|
|
18
|
+
__exportStar(require("./auth"), exports);
|
|
19
|
+
__exportStar(require("./request"), exports);
|
|
20
|
+
__exportStar(require("./services"), exports);
|
|
21
|
+
__exportStar(require("./tools"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './preformNetworkRequest';
|
|
1
|
+
export * from './preformNetworkRequest';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./preformNetworkRequest"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./preformNetworkRequest"), exports);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTTPNetworkResponse, NetworkRequestActionPayload } from 'quidproquo-core';
|
|
2
|
-
export declare const preformNetworkRequest: <R>(payload: NetworkRequestActionPayload<any>) => Promise<HTTPNetworkResponse<R>>;
|
|
1
|
+
import { HTTPNetworkResponse, NetworkRequestActionPayload } from 'quidproquo-core';
|
|
2
|
+
export declare const preformNetworkRequest: <R>(payload: NetworkRequestActionPayload<any>) => Promise<HTTPNetworkResponse<R>>;
|