@ama-sdk/client-fetch 12.3.0-prerelease.7 → 12.3.0-prerelease.70
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/cjs/api-fetch-client.js +6 -9
- package/cjs/plugins/abort/abort.spec.js +4 -8
- package/cjs/plugins/concurrent/concurrent.fetch.js +4 -8
- package/cjs/plugins/concurrent/concurrent.spec.js +4 -8
- package/cjs/plugins/keepalive/keepalive.request.js +4 -8
- package/cjs/plugins/keepalive/keepalive.spec.js +4 -8
- package/cjs/plugins/mock-intercept/mock-intercept.fetch.js +4 -8
- package/cjs/plugins/mock-intercept/mock-intercept.spec.js +4 -8
- package/cjs/plugins/perf-metric/perf-metric.fetch.js +4 -8
- package/cjs/plugins/retry/retry.fetch.js +4 -8
- package/cjs/plugins/retry/retry.spec.js +4 -8
- package/cjs/plugins/timeout/timeout.fetch.js +4 -8
- package/cjs/plugins/timeout/timeout.spec.js +4 -8
- package/cjs/plugins/wait-for/wait-for.fetch.js +4 -8
- package/cjs/plugins/wait-for/wait-for.spec.js +4 -8
- package/esm2015/api-fetch-client.js +6 -9
- package/esm2015/plugins/abort/abort.spec.js +4 -8
- package/esm2015/plugins/concurrent/concurrent.fetch.js +4 -8
- package/esm2015/plugins/concurrent/concurrent.spec.js +4 -8
- package/esm2015/plugins/keepalive/keepalive.request.js +4 -8
- package/esm2015/plugins/keepalive/keepalive.spec.js +4 -8
- package/esm2015/plugins/mock-intercept/mock-intercept.fetch.js +4 -8
- package/esm2015/plugins/mock-intercept/mock-intercept.spec.js +4 -8
- package/esm2015/plugins/perf-metric/perf-metric.fetch.js +4 -8
- package/esm2015/plugins/retry/retry.fetch.js +4 -8
- package/esm2015/plugins/retry/retry.spec.js +4 -8
- package/esm2015/plugins/timeout/timeout.fetch.js +4 -8
- package/esm2015/plugins/timeout/timeout.spec.js +4 -8
- package/esm2015/plugins/wait-for/wait-for.fetch.js +4 -8
- package/esm2015/plugins/wait-for/wait-for.spec.js +4 -8
- package/package.json +15 -15
- package/schematics/ng-add/index.d.ts.map +1 -1
- package/schematics/ng-add/index.js +11 -21
- package/src/api-fetch-client.d.ts +1 -1
- package/src/api-fetch-client.d.ts.map +1 -1
- package/src/api-fetch-client.js +2 -1
- package/src/api-fetch-client.js.map +1 -1
package/cjs/api-fetch-client.js
CHANGED
|
@@ -142,7 +142,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
142
142
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
143
143
|
}
|
|
144
144
|
function _ts_generator(thisArg, body) {
|
|
145
|
-
var f, y, t,
|
|
145
|
+
var f, y, t, _ = {
|
|
146
146
|
label: 0,
|
|
147
147
|
sent: function() {
|
|
148
148
|
if (t[0] & 1) throw t[1];
|
|
@@ -150,12 +150,8 @@ function _ts_generator(thisArg, body) {
|
|
|
150
150
|
},
|
|
151
151
|
trys: [],
|
|
152
152
|
ops: []
|
|
153
|
-
};
|
|
154
|
-
return g = {
|
|
155
|
-
next: verb(0),
|
|
156
|
-
"throw": verb(1),
|
|
157
|
-
"return": verb(2)
|
|
158
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
153
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
154
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
159
155
|
return this;
|
|
160
156
|
}), g;
|
|
161
157
|
function verb(n) {
|
|
@@ -168,7 +164,7 @@ function _ts_generator(thisArg, body) {
|
|
|
168
164
|
}
|
|
169
165
|
function step(op) {
|
|
170
166
|
if (f) throw new TypeError("Generator is already executing.");
|
|
171
|
-
while(_)try {
|
|
167
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
172
168
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
173
169
|
if (y = 0, t) op = [
|
|
174
170
|
op[0] & 2,
|
|
@@ -244,7 +240,8 @@ var DEFAULT_OPTIONS = {
|
|
|
244
240
|
fetchPlugins: [],
|
|
245
241
|
requestPlugins: [],
|
|
246
242
|
enableTokenization: false,
|
|
247
|
-
disableFallback: false
|
|
243
|
+
disableFallback: false,
|
|
244
|
+
enableParameterSerialization: false
|
|
248
245
|
};
|
|
249
246
|
var ApiFetchClient = /*#__PURE__*/ function() {
|
|
250
247
|
"use strict";
|
|
@@ -33,7 +33,7 @@ function _async_to_generator(fn) {
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
function _ts_generator(thisArg, body) {
|
|
36
|
-
var f, y, t,
|
|
36
|
+
var f, y, t, _ = {
|
|
37
37
|
label: 0,
|
|
38
38
|
sent: function() {
|
|
39
39
|
if (t[0] & 1) throw t[1];
|
|
@@ -41,12 +41,8 @@ function _ts_generator(thisArg, body) {
|
|
|
41
41
|
},
|
|
42
42
|
trys: [],
|
|
43
43
|
ops: []
|
|
44
|
-
};
|
|
45
|
-
return g = {
|
|
46
|
-
next: verb(0),
|
|
47
|
-
"throw": verb(1),
|
|
48
|
-
"return": verb(2)
|
|
49
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
44
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
45
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
50
46
|
return this;
|
|
51
47
|
}), g;
|
|
52
48
|
function verb(n) {
|
|
@@ -59,7 +55,7 @@ function _ts_generator(thisArg, body) {
|
|
|
59
55
|
}
|
|
60
56
|
function step(op) {
|
|
61
57
|
if (f) throw new TypeError("Generator is already executing.");
|
|
62
|
-
while(_)try {
|
|
58
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
63
59
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
64
60
|
if (y = 0, t) op = [
|
|
65
61
|
op[0] & 2,
|
|
@@ -70,7 +70,7 @@ function _define_property(obj, key, value) {
|
|
|
70
70
|
return obj;
|
|
71
71
|
}
|
|
72
72
|
function _ts_generator(thisArg, body) {
|
|
73
|
-
var f, y, t,
|
|
73
|
+
var f, y, t, _ = {
|
|
74
74
|
label: 0,
|
|
75
75
|
sent: function() {
|
|
76
76
|
if (t[0] & 1) throw t[1];
|
|
@@ -78,12 +78,8 @@ function _ts_generator(thisArg, body) {
|
|
|
78
78
|
},
|
|
79
79
|
trys: [],
|
|
80
80
|
ops: []
|
|
81
|
-
};
|
|
82
|
-
return g = {
|
|
83
|
-
next: verb(0),
|
|
84
|
-
"throw": verb(1),
|
|
85
|
-
"return": verb(2)
|
|
86
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
81
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
82
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
87
83
|
return this;
|
|
88
84
|
}), g;
|
|
89
85
|
function verb(n) {
|
|
@@ -96,7 +92,7 @@ function _ts_generator(thisArg, body) {
|
|
|
96
92
|
}
|
|
97
93
|
function step(op) {
|
|
98
94
|
if (f) throw new TypeError("Generator is already executing.");
|
|
99
|
-
while(_)try {
|
|
95
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
100
96
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
101
97
|
if (y = 0, t) op = [
|
|
102
98
|
op[0] & 2,
|
|
@@ -33,7 +33,7 @@ function _async_to_generator(fn) {
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
function _ts_generator(thisArg, body) {
|
|
36
|
-
var f, y, t,
|
|
36
|
+
var f, y, t, _ = {
|
|
37
37
|
label: 0,
|
|
38
38
|
sent: function() {
|
|
39
39
|
if (t[0] & 1) throw t[1];
|
|
@@ -41,12 +41,8 @@ function _ts_generator(thisArg, body) {
|
|
|
41
41
|
},
|
|
42
42
|
trys: [],
|
|
43
43
|
ops: []
|
|
44
|
-
};
|
|
45
|
-
return g = {
|
|
46
|
-
next: verb(0),
|
|
47
|
-
"throw": verb(1),
|
|
48
|
-
"return": verb(2)
|
|
49
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
44
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
45
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
50
46
|
return this;
|
|
51
47
|
}), g;
|
|
52
48
|
function verb(n) {
|
|
@@ -59,7 +55,7 @@ function _ts_generator(thisArg, body) {
|
|
|
59
55
|
}
|
|
60
56
|
function step(op) {
|
|
61
57
|
if (f) throw new TypeError("Generator is already executing.");
|
|
62
|
-
while(_)try {
|
|
58
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
63
59
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
64
60
|
if (y = 0, t) op = [
|
|
65
61
|
op[0] & 2,
|
|
@@ -109,7 +109,7 @@ function _object_spread_props(target, source) {
|
|
|
109
109
|
return target;
|
|
110
110
|
}
|
|
111
111
|
function _ts_generator(thisArg, body) {
|
|
112
|
-
var f, y, t,
|
|
112
|
+
var f, y, t, _ = {
|
|
113
113
|
label: 0,
|
|
114
114
|
sent: function() {
|
|
115
115
|
if (t[0] & 1) throw t[1];
|
|
@@ -117,12 +117,8 @@ function _ts_generator(thisArg, body) {
|
|
|
117
117
|
},
|
|
118
118
|
trys: [],
|
|
119
119
|
ops: []
|
|
120
|
-
};
|
|
121
|
-
return g = {
|
|
122
|
-
next: verb(0),
|
|
123
|
-
"throw": verb(1),
|
|
124
|
-
"return": verb(2)
|
|
125
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
120
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
121
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
126
122
|
return this;
|
|
127
123
|
}), g;
|
|
128
124
|
function verb(n) {
|
|
@@ -135,7 +131,7 @@ function _ts_generator(thisArg, body) {
|
|
|
135
131
|
}
|
|
136
132
|
function step(op) {
|
|
137
133
|
if (f) throw new TypeError("Generator is already executing.");
|
|
138
|
-
while(_)try {
|
|
134
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
139
135
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
140
136
|
if (y = 0, t) op = [
|
|
141
137
|
op[0] & 2,
|
|
@@ -33,7 +33,7 @@ function _async_to_generator(fn) {
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
function _ts_generator(thisArg, body) {
|
|
36
|
-
var f, y, t,
|
|
36
|
+
var f, y, t, _ = {
|
|
37
37
|
label: 0,
|
|
38
38
|
sent: function() {
|
|
39
39
|
if (t[0] & 1) throw t[1];
|
|
@@ -41,12 +41,8 @@ function _ts_generator(thisArg, body) {
|
|
|
41
41
|
},
|
|
42
42
|
trys: [],
|
|
43
43
|
ops: []
|
|
44
|
-
};
|
|
45
|
-
return g = {
|
|
46
|
-
next: verb(0),
|
|
47
|
-
"throw": verb(1),
|
|
48
|
-
"return": verb(2)
|
|
49
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
44
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
45
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
50
46
|
return this;
|
|
51
47
|
}), g;
|
|
52
48
|
function verb(n) {
|
|
@@ -59,7 +55,7 @@ function _ts_generator(thisArg, body) {
|
|
|
59
55
|
}
|
|
60
56
|
function step(op) {
|
|
61
57
|
if (f) throw new TypeError("Generator is already executing.");
|
|
62
|
-
while(_)try {
|
|
58
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
63
59
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
64
60
|
if (y = 0, t) op = [
|
|
65
61
|
op[0] & 2,
|
|
@@ -78,7 +78,7 @@ function _instanceof(left, right) {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
function _ts_generator(thisArg, body) {
|
|
81
|
-
var f, y, t,
|
|
81
|
+
var f, y, t, _ = {
|
|
82
82
|
label: 0,
|
|
83
83
|
sent: function() {
|
|
84
84
|
if (t[0] & 1) throw t[1];
|
|
@@ -86,12 +86,8 @@ function _ts_generator(thisArg, body) {
|
|
|
86
86
|
},
|
|
87
87
|
trys: [],
|
|
88
88
|
ops: []
|
|
89
|
-
};
|
|
90
|
-
return g = {
|
|
91
|
-
next: verb(0),
|
|
92
|
-
"throw": verb(1),
|
|
93
|
-
"return": verb(2)
|
|
94
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
89
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
90
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
95
91
|
return this;
|
|
96
92
|
}), g;
|
|
97
93
|
function verb(n) {
|
|
@@ -104,7 +100,7 @@ function _ts_generator(thisArg, body) {
|
|
|
104
100
|
}
|
|
105
101
|
function step(op) {
|
|
106
102
|
if (f) throw new TypeError("Generator is already executing.");
|
|
107
|
-
while(_)try {
|
|
103
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
108
104
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
109
105
|
if (y = 0, t) op = [
|
|
110
106
|
op[0] & 2,
|
|
@@ -47,7 +47,7 @@ function _define_property(obj, key, value) {
|
|
|
47
47
|
return obj;
|
|
48
48
|
}
|
|
49
49
|
function _ts_generator(thisArg, body) {
|
|
50
|
-
var f, y, t,
|
|
50
|
+
var f, y, t, _ = {
|
|
51
51
|
label: 0,
|
|
52
52
|
sent: function() {
|
|
53
53
|
if (t[0] & 1) throw t[1];
|
|
@@ -55,12 +55,8 @@ function _ts_generator(thisArg, body) {
|
|
|
55
55
|
},
|
|
56
56
|
trys: [],
|
|
57
57
|
ops: []
|
|
58
|
-
};
|
|
59
|
-
return g = {
|
|
60
|
-
next: verb(0),
|
|
61
|
-
"throw": verb(1),
|
|
62
|
-
"return": verb(2)
|
|
63
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
58
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
59
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
64
60
|
return this;
|
|
65
61
|
}), g;
|
|
66
62
|
function verb(n) {
|
|
@@ -73,7 +69,7 @@ function _ts_generator(thisArg, body) {
|
|
|
73
69
|
}
|
|
74
70
|
function step(op) {
|
|
75
71
|
if (f) throw new TypeError("Generator is already executing.");
|
|
76
|
-
while(_)try {
|
|
72
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
77
73
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
78
74
|
if (y = 0, t) op = [
|
|
79
75
|
op[0] & 2,
|
|
@@ -110,7 +110,7 @@ function _object_spread_props(target, source) {
|
|
|
110
110
|
return target;
|
|
111
111
|
}
|
|
112
112
|
function _ts_generator(thisArg, body) {
|
|
113
|
-
var f, y, t,
|
|
113
|
+
var f, y, t, _ = {
|
|
114
114
|
label: 0,
|
|
115
115
|
sent: function() {
|
|
116
116
|
if (t[0] & 1) throw t[1];
|
|
@@ -118,12 +118,8 @@ function _ts_generator(thisArg, body) {
|
|
|
118
118
|
},
|
|
119
119
|
trys: [],
|
|
120
120
|
ops: []
|
|
121
|
-
};
|
|
122
|
-
return g = {
|
|
123
|
-
next: verb(0),
|
|
124
|
-
"throw": verb(1),
|
|
125
|
-
"return": verb(2)
|
|
126
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
121
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
122
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
127
123
|
return this;
|
|
128
124
|
}), g;
|
|
129
125
|
function verb(n) {
|
|
@@ -136,7 +132,7 @@ function _ts_generator(thisArg, body) {
|
|
|
136
132
|
}
|
|
137
133
|
function step(op) {
|
|
138
134
|
if (f) throw new TypeError("Generator is already executing.");
|
|
139
|
-
while(_)try {
|
|
135
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
140
136
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
141
137
|
if (y = 0, t) op = [
|
|
142
138
|
op[0] & 2,
|
|
@@ -78,7 +78,7 @@ function _instanceof(left, right) {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
function _ts_generator(thisArg, body) {
|
|
81
|
-
var f, y, t,
|
|
81
|
+
var f, y, t, _ = {
|
|
82
82
|
label: 0,
|
|
83
83
|
sent: function() {
|
|
84
84
|
if (t[0] & 1) throw t[1];
|
|
@@ -86,12 +86,8 @@ function _ts_generator(thisArg, body) {
|
|
|
86
86
|
},
|
|
87
87
|
trys: [],
|
|
88
88
|
ops: []
|
|
89
|
-
};
|
|
90
|
-
return g = {
|
|
91
|
-
next: verb(0),
|
|
92
|
-
"throw": verb(1),
|
|
93
|
-
"return": verb(2)
|
|
94
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
89
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
90
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
95
91
|
return this;
|
|
96
92
|
}), g;
|
|
97
93
|
function verb(n) {
|
|
@@ -104,7 +100,7 @@ function _ts_generator(thisArg, body) {
|
|
|
104
100
|
}
|
|
105
101
|
function step(op) {
|
|
106
102
|
if (f) throw new TypeError("Generator is already executing.");
|
|
107
|
-
while(_)try {
|
|
103
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
108
104
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
109
105
|
if (y = 0, t) op = [
|
|
110
106
|
op[0] & 2,
|
|
@@ -33,7 +33,7 @@ function _async_to_generator(fn) {
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
function _ts_generator(thisArg, body) {
|
|
36
|
-
var f, y, t,
|
|
36
|
+
var f, y, t, _ = {
|
|
37
37
|
label: 0,
|
|
38
38
|
sent: function() {
|
|
39
39
|
if (t[0] & 1) throw t[1];
|
|
@@ -41,12 +41,8 @@ function _ts_generator(thisArg, body) {
|
|
|
41
41
|
},
|
|
42
42
|
trys: [],
|
|
43
43
|
ops: []
|
|
44
|
-
};
|
|
45
|
-
return g = {
|
|
46
|
-
next: verb(0),
|
|
47
|
-
"throw": verb(1),
|
|
48
|
-
"return": verb(2)
|
|
49
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
44
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
45
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
50
46
|
return this;
|
|
51
47
|
}), g;
|
|
52
48
|
function verb(n) {
|
|
@@ -59,7 +55,7 @@ function _ts_generator(thisArg, body) {
|
|
|
59
55
|
}
|
|
60
56
|
function step(op) {
|
|
61
57
|
if (f) throw new TypeError("Generator is already executing.");
|
|
62
|
-
while(_)try {
|
|
58
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
63
59
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
64
60
|
if (y = 0, t) op = [
|
|
65
61
|
op[0] & 2,
|
|
@@ -90,7 +90,7 @@ function _type_of(obj) {
|
|
|
90
90
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
91
91
|
}
|
|
92
92
|
function _ts_generator(thisArg, body) {
|
|
93
|
-
var f, y, t,
|
|
93
|
+
var f, y, t, _ = {
|
|
94
94
|
label: 0,
|
|
95
95
|
sent: function() {
|
|
96
96
|
if (t[0] & 1) throw t[1];
|
|
@@ -98,12 +98,8 @@ function _ts_generator(thisArg, body) {
|
|
|
98
98
|
},
|
|
99
99
|
trys: [],
|
|
100
100
|
ops: []
|
|
101
|
-
};
|
|
102
|
-
return g = {
|
|
103
|
-
next: verb(0),
|
|
104
|
-
"throw": verb(1),
|
|
105
|
-
"return": verb(2)
|
|
106
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
101
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
102
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
107
103
|
return this;
|
|
108
104
|
}), g;
|
|
109
105
|
function verb(n) {
|
|
@@ -116,7 +112,7 @@ function _ts_generator(thisArg, body) {
|
|
|
116
112
|
}
|
|
117
113
|
function step(op) {
|
|
118
114
|
if (f) throw new TypeError("Generator is already executing.");
|
|
119
|
-
while(_)try {
|
|
115
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
120
116
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
121
117
|
if (y = 0, t) op = [
|
|
122
118
|
op[0] & 2,
|
|
@@ -38,7 +38,7 @@ function _type_of(obj) {
|
|
|
38
38
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
39
39
|
}
|
|
40
40
|
function _ts_generator(thisArg, body) {
|
|
41
|
-
var f, y, t,
|
|
41
|
+
var f, y, t, _ = {
|
|
42
42
|
label: 0,
|
|
43
43
|
sent: function() {
|
|
44
44
|
if (t[0] & 1) throw t[1];
|
|
@@ -46,12 +46,8 @@ function _ts_generator(thisArg, body) {
|
|
|
46
46
|
},
|
|
47
47
|
trys: [],
|
|
48
48
|
ops: []
|
|
49
|
-
};
|
|
50
|
-
return g = {
|
|
51
|
-
next: verb(0),
|
|
52
|
-
"throw": verb(1),
|
|
53
|
-
"return": verb(2)
|
|
54
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
49
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
50
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
55
51
|
return this;
|
|
56
52
|
}), g;
|
|
57
53
|
function verb(n) {
|
|
@@ -64,7 +60,7 @@ function _ts_generator(thisArg, body) {
|
|
|
64
60
|
}
|
|
65
61
|
function step(op) {
|
|
66
62
|
if (f) throw new TypeError("Generator is already executing.");
|
|
67
|
-
while(_)try {
|
|
63
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
68
64
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
69
65
|
if (y = 0, t) op = [
|
|
70
66
|
op[0] & 2,
|
|
@@ -109,7 +109,7 @@ function _object_spread_props(target, source) {
|
|
|
109
109
|
return target;
|
|
110
110
|
}
|
|
111
111
|
function _ts_generator(thisArg, body) {
|
|
112
|
-
var f, y, t,
|
|
112
|
+
var f, y, t, _ = {
|
|
113
113
|
label: 0,
|
|
114
114
|
sent: function() {
|
|
115
115
|
if (t[0] & 1) throw t[1];
|
|
@@ -117,12 +117,8 @@ function _ts_generator(thisArg, body) {
|
|
|
117
117
|
},
|
|
118
118
|
trys: [],
|
|
119
119
|
ops: []
|
|
120
|
-
};
|
|
121
|
-
return g = {
|
|
122
|
-
next: verb(0),
|
|
123
|
-
"throw": verb(1),
|
|
124
|
-
"return": verb(2)
|
|
125
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
120
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
121
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
126
122
|
return this;
|
|
127
123
|
}), g;
|
|
128
124
|
function verb(n) {
|
|
@@ -135,7 +131,7 @@ function _ts_generator(thisArg, body) {
|
|
|
135
131
|
}
|
|
136
132
|
function step(op) {
|
|
137
133
|
if (f) throw new TypeError("Generator is already executing.");
|
|
138
|
-
while(_)try {
|
|
134
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
139
135
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
140
136
|
if (y = 0, t) op = [
|
|
141
137
|
op[0] & 2,
|
|
@@ -85,7 +85,7 @@ function _object_spread_props(target, source) {
|
|
|
85
85
|
return target;
|
|
86
86
|
}
|
|
87
87
|
function _ts_generator(thisArg, body) {
|
|
88
|
-
var f, y, t,
|
|
88
|
+
var f, y, t, _ = {
|
|
89
89
|
label: 0,
|
|
90
90
|
sent: function() {
|
|
91
91
|
if (t[0] & 1) throw t[1];
|
|
@@ -93,12 +93,8 @@ function _ts_generator(thisArg, body) {
|
|
|
93
93
|
},
|
|
94
94
|
trys: [],
|
|
95
95
|
ops: []
|
|
96
|
-
};
|
|
97
|
-
return g = {
|
|
98
|
-
next: verb(0),
|
|
99
|
-
"throw": verb(1),
|
|
100
|
-
"return": verb(2)
|
|
101
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
96
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
97
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
102
98
|
return this;
|
|
103
99
|
}), g;
|
|
104
100
|
function verb(n) {
|
|
@@ -111,7 +107,7 @@ function _ts_generator(thisArg, body) {
|
|
|
111
107
|
}
|
|
112
108
|
function step(op) {
|
|
113
109
|
if (f) throw new TypeError("Generator is already executing.");
|
|
114
|
-
while(_)try {
|
|
110
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
115
111
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
116
112
|
if (y = 0, t) op = [
|
|
117
113
|
op[0] & 2,
|
|
@@ -131,7 +131,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
131
131
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
132
132
|
}
|
|
133
133
|
function _ts_generator(thisArg, body) {
|
|
134
|
-
var f, y, t,
|
|
134
|
+
var f, y, t, _ = {
|
|
135
135
|
label: 0,
|
|
136
136
|
sent: function() {
|
|
137
137
|
if (t[0] & 1) throw t[1];
|
|
@@ -139,12 +139,8 @@ function _ts_generator(thisArg, body) {
|
|
|
139
139
|
},
|
|
140
140
|
trys: [],
|
|
141
141
|
ops: []
|
|
142
|
-
};
|
|
143
|
-
return g = {
|
|
144
|
-
next: verb(0),
|
|
145
|
-
"throw": verb(1),
|
|
146
|
-
"return": verb(2)
|
|
147
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
142
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
143
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
148
144
|
return this;
|
|
149
145
|
}), g;
|
|
150
146
|
function verb(n) {
|
|
@@ -157,7 +153,7 @@ function _ts_generator(thisArg, body) {
|
|
|
157
153
|
}
|
|
158
154
|
function step(op) {
|
|
159
155
|
if (f) throw new TypeError("Generator is already executing.");
|
|
160
|
-
while(_)try {
|
|
156
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
161
157
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
162
158
|
if (y = 0, t) op = [
|
|
163
159
|
op[0] & 2,
|
|
@@ -234,7 +230,8 @@ var DEFAULT_OPTIONS = {
|
|
|
234
230
|
fetchPlugins: [],
|
|
235
231
|
requestPlugins: [],
|
|
236
232
|
enableTokenization: false,
|
|
237
|
-
disableFallback: false
|
|
233
|
+
disableFallback: false,
|
|
234
|
+
enableParameterSerialization: false
|
|
238
235
|
};
|
|
239
236
|
/** Client to process the call to the API using Fetch API */ export var ApiFetchClient = /*#__PURE__*/ function() {
|
|
240
237
|
"use strict";
|
|
@@ -28,7 +28,7 @@ function _async_to_generator(fn) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
function _ts_generator(thisArg, body) {
|
|
31
|
-
var f, y, t,
|
|
31
|
+
var f, y, t, _ = {
|
|
32
32
|
label: 0,
|
|
33
33
|
sent: function() {
|
|
34
34
|
if (t[0] & 1) throw t[1];
|
|
@@ -36,12 +36,8 @@ function _ts_generator(thisArg, body) {
|
|
|
36
36
|
},
|
|
37
37
|
trys: [],
|
|
38
38
|
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
39
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
40
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
41
|
return this;
|
|
46
42
|
}), g;
|
|
47
43
|
function verb(n) {
|
|
@@ -54,7 +50,7 @@ function _ts_generator(thisArg, body) {
|
|
|
54
50
|
}
|
|
55
51
|
function step(op) {
|
|
56
52
|
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
53
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
58
54
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
59
55
|
if (y = 0, t) op = [
|
|
60
56
|
op[0] & 2,
|
|
@@ -60,7 +60,7 @@ function _define_property(obj, key, value) {
|
|
|
60
60
|
return obj;
|
|
61
61
|
}
|
|
62
62
|
function _ts_generator(thisArg, body) {
|
|
63
|
-
var f, y, t,
|
|
63
|
+
var f, y, t, _ = {
|
|
64
64
|
label: 0,
|
|
65
65
|
sent: function() {
|
|
66
66
|
if (t[0] & 1) throw t[1];
|
|
@@ -68,12 +68,8 @@ function _ts_generator(thisArg, body) {
|
|
|
68
68
|
},
|
|
69
69
|
trys: [],
|
|
70
70
|
ops: []
|
|
71
|
-
};
|
|
72
|
-
return g = {
|
|
73
|
-
next: verb(0),
|
|
74
|
-
"throw": verb(1),
|
|
75
|
-
"return": verb(2)
|
|
76
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
71
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
72
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
77
73
|
return this;
|
|
78
74
|
}), g;
|
|
79
75
|
function verb(n) {
|
|
@@ -86,7 +82,7 @@ function _ts_generator(thisArg, body) {
|
|
|
86
82
|
}
|
|
87
83
|
function step(op) {
|
|
88
84
|
if (f) throw new TypeError("Generator is already executing.");
|
|
89
|
-
while(_)try {
|
|
85
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
90
86
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
91
87
|
if (y = 0, t) op = [
|
|
92
88
|
op[0] & 2,
|
|
@@ -28,7 +28,7 @@ function _async_to_generator(fn) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
function _ts_generator(thisArg, body) {
|
|
31
|
-
var f, y, t,
|
|
31
|
+
var f, y, t, _ = {
|
|
32
32
|
label: 0,
|
|
33
33
|
sent: function() {
|
|
34
34
|
if (t[0] & 1) throw t[1];
|
|
@@ -36,12 +36,8 @@ function _ts_generator(thisArg, body) {
|
|
|
36
36
|
},
|
|
37
37
|
trys: [],
|
|
38
38
|
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
39
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
40
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
41
|
return this;
|
|
46
42
|
}), g;
|
|
47
43
|
function verb(n) {
|
|
@@ -54,7 +50,7 @@ function _ts_generator(thisArg, body) {
|
|
|
54
50
|
}
|
|
55
51
|
function step(op) {
|
|
56
52
|
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
53
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
58
54
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
59
55
|
if (y = 0, t) op = [
|
|
60
56
|
op[0] & 2,
|
|
@@ -99,7 +99,7 @@ function _object_spread_props(target, source) {
|
|
|
99
99
|
return target;
|
|
100
100
|
}
|
|
101
101
|
function _ts_generator(thisArg, body) {
|
|
102
|
-
var f, y, t,
|
|
102
|
+
var f, y, t, _ = {
|
|
103
103
|
label: 0,
|
|
104
104
|
sent: function() {
|
|
105
105
|
if (t[0] & 1) throw t[1];
|
|
@@ -107,12 +107,8 @@ function _ts_generator(thisArg, body) {
|
|
|
107
107
|
},
|
|
108
108
|
trys: [],
|
|
109
109
|
ops: []
|
|
110
|
-
};
|
|
111
|
-
return g = {
|
|
112
|
-
next: verb(0),
|
|
113
|
-
"throw": verb(1),
|
|
114
|
-
"return": verb(2)
|
|
115
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
110
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
111
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
116
112
|
return this;
|
|
117
113
|
}), g;
|
|
118
114
|
function verb(n) {
|
|
@@ -125,7 +121,7 @@ function _ts_generator(thisArg, body) {
|
|
|
125
121
|
}
|
|
126
122
|
function step(op) {
|
|
127
123
|
if (f) throw new TypeError("Generator is already executing.");
|
|
128
|
-
while(_)try {
|
|
124
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
129
125
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
130
126
|
if (y = 0, t) op = [
|
|
131
127
|
op[0] & 2,
|
|
@@ -28,7 +28,7 @@ function _async_to_generator(fn) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
function _ts_generator(thisArg, body) {
|
|
31
|
-
var f, y, t,
|
|
31
|
+
var f, y, t, _ = {
|
|
32
32
|
label: 0,
|
|
33
33
|
sent: function() {
|
|
34
34
|
if (t[0] & 1) throw t[1];
|
|
@@ -36,12 +36,8 @@ function _ts_generator(thisArg, body) {
|
|
|
36
36
|
},
|
|
37
37
|
trys: [],
|
|
38
38
|
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
39
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
40
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
41
|
return this;
|
|
46
42
|
}), g;
|
|
47
43
|
function verb(n) {
|
|
@@ -54,7 +50,7 @@ function _ts_generator(thisArg, body) {
|
|
|
54
50
|
}
|
|
55
51
|
function step(op) {
|
|
56
52
|
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
53
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
58
54
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
59
55
|
if (y = 0, t) op = [
|
|
60
56
|
op[0] & 2,
|
|
@@ -67,7 +67,7 @@ function _instanceof(left, right) {
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
function _ts_generator(thisArg, body) {
|
|
70
|
-
var f, y, t,
|
|
70
|
+
var f, y, t, _ = {
|
|
71
71
|
label: 0,
|
|
72
72
|
sent: function() {
|
|
73
73
|
if (t[0] & 1) throw t[1];
|
|
@@ -75,12 +75,8 @@ function _ts_generator(thisArg, body) {
|
|
|
75
75
|
},
|
|
76
76
|
trys: [],
|
|
77
77
|
ops: []
|
|
78
|
-
};
|
|
79
|
-
return g = {
|
|
80
|
-
next: verb(0),
|
|
81
|
-
"throw": verb(1),
|
|
82
|
-
"return": verb(2)
|
|
83
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
78
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
79
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
84
80
|
return this;
|
|
85
81
|
}), g;
|
|
86
82
|
function verb(n) {
|
|
@@ -93,7 +89,7 @@ function _ts_generator(thisArg, body) {
|
|
|
93
89
|
}
|
|
94
90
|
function step(op) {
|
|
95
91
|
if (f) throw new TypeError("Generator is already executing.");
|
|
96
|
-
while(_)try {
|
|
92
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
97
93
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
98
94
|
if (y = 0, t) op = [
|
|
99
95
|
op[0] & 2,
|
|
@@ -41,7 +41,7 @@ function _define_property(obj, key, value) {
|
|
|
41
41
|
return obj;
|
|
42
42
|
}
|
|
43
43
|
function _ts_generator(thisArg, body) {
|
|
44
|
-
var f, y, t,
|
|
44
|
+
var f, y, t, _ = {
|
|
45
45
|
label: 0,
|
|
46
46
|
sent: function() {
|
|
47
47
|
if (t[0] & 1) throw t[1];
|
|
@@ -49,12 +49,8 @@ function _ts_generator(thisArg, body) {
|
|
|
49
49
|
},
|
|
50
50
|
trys: [],
|
|
51
51
|
ops: []
|
|
52
|
-
};
|
|
53
|
-
return g = {
|
|
54
|
-
next: verb(0),
|
|
55
|
-
"throw": verb(1),
|
|
56
|
-
"return": verb(2)
|
|
57
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
52
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
53
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
58
54
|
return this;
|
|
59
55
|
}), g;
|
|
60
56
|
function verb(n) {
|
|
@@ -67,7 +63,7 @@ function _ts_generator(thisArg, body) {
|
|
|
67
63
|
}
|
|
68
64
|
function step(op) {
|
|
69
65
|
if (f) throw new TypeError("Generator is already executing.");
|
|
70
|
-
while(_)try {
|
|
66
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
71
67
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
72
68
|
if (y = 0, t) op = [
|
|
73
69
|
op[0] & 2,
|
|
@@ -99,7 +99,7 @@ function _object_spread_props(target, source) {
|
|
|
99
99
|
return target;
|
|
100
100
|
}
|
|
101
101
|
function _ts_generator(thisArg, body) {
|
|
102
|
-
var f, y, t,
|
|
102
|
+
var f, y, t, _ = {
|
|
103
103
|
label: 0,
|
|
104
104
|
sent: function() {
|
|
105
105
|
if (t[0] & 1) throw t[1];
|
|
@@ -107,12 +107,8 @@ function _ts_generator(thisArg, body) {
|
|
|
107
107
|
},
|
|
108
108
|
trys: [],
|
|
109
109
|
ops: []
|
|
110
|
-
};
|
|
111
|
-
return g = {
|
|
112
|
-
next: verb(0),
|
|
113
|
-
"throw": verb(1),
|
|
114
|
-
"return": verb(2)
|
|
115
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
110
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
111
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
116
112
|
return this;
|
|
117
113
|
}), g;
|
|
118
114
|
function verb(n) {
|
|
@@ -125,7 +121,7 @@ function _ts_generator(thisArg, body) {
|
|
|
125
121
|
}
|
|
126
122
|
function step(op) {
|
|
127
123
|
if (f) throw new TypeError("Generator is already executing.");
|
|
128
|
-
while(_)try {
|
|
124
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
129
125
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
130
126
|
if (y = 0, t) op = [
|
|
131
127
|
op[0] & 2,
|
|
@@ -67,7 +67,7 @@ function _instanceof(left, right) {
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
function _ts_generator(thisArg, body) {
|
|
70
|
-
var f, y, t,
|
|
70
|
+
var f, y, t, _ = {
|
|
71
71
|
label: 0,
|
|
72
72
|
sent: function() {
|
|
73
73
|
if (t[0] & 1) throw t[1];
|
|
@@ -75,12 +75,8 @@ function _ts_generator(thisArg, body) {
|
|
|
75
75
|
},
|
|
76
76
|
trys: [],
|
|
77
77
|
ops: []
|
|
78
|
-
};
|
|
79
|
-
return g = {
|
|
80
|
-
next: verb(0),
|
|
81
|
-
"throw": verb(1),
|
|
82
|
-
"return": verb(2)
|
|
83
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
78
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
79
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
84
80
|
return this;
|
|
85
81
|
}), g;
|
|
86
82
|
function verb(n) {
|
|
@@ -93,7 +89,7 @@ function _ts_generator(thisArg, body) {
|
|
|
93
89
|
}
|
|
94
90
|
function step(op) {
|
|
95
91
|
if (f) throw new TypeError("Generator is already executing.");
|
|
96
|
-
while(_)try {
|
|
92
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
97
93
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
98
94
|
if (y = 0, t) op = [
|
|
99
95
|
op[0] & 2,
|
|
@@ -28,7 +28,7 @@ function _async_to_generator(fn) {
|
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
function _ts_generator(thisArg, body) {
|
|
31
|
-
var f, y, t,
|
|
31
|
+
var f, y, t, _ = {
|
|
32
32
|
label: 0,
|
|
33
33
|
sent: function() {
|
|
34
34
|
if (t[0] & 1) throw t[1];
|
|
@@ -36,12 +36,8 @@ function _ts_generator(thisArg, body) {
|
|
|
36
36
|
},
|
|
37
37
|
trys: [],
|
|
38
38
|
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
39
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
40
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
41
|
return this;
|
|
46
42
|
}), g;
|
|
47
43
|
function verb(n) {
|
|
@@ -54,7 +50,7 @@ function _ts_generator(thisArg, body) {
|
|
|
54
50
|
}
|
|
55
51
|
function step(op) {
|
|
56
52
|
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
53
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
58
54
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
59
55
|
if (y = 0, t) op = [
|
|
60
56
|
op[0] & 2,
|
|
@@ -71,7 +71,7 @@ function _type_of(obj) {
|
|
|
71
71
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
72
72
|
}
|
|
73
73
|
function _ts_generator(thisArg, body) {
|
|
74
|
-
var f, y, t,
|
|
74
|
+
var f, y, t, _ = {
|
|
75
75
|
label: 0,
|
|
76
76
|
sent: function() {
|
|
77
77
|
if (t[0] & 1) throw t[1];
|
|
@@ -79,12 +79,8 @@ function _ts_generator(thisArg, body) {
|
|
|
79
79
|
},
|
|
80
80
|
trys: [],
|
|
81
81
|
ops: []
|
|
82
|
-
};
|
|
83
|
-
return g = {
|
|
84
|
-
next: verb(0),
|
|
85
|
-
"throw": verb(1),
|
|
86
|
-
"return": verb(2)
|
|
87
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
82
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
83
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
88
84
|
return this;
|
|
89
85
|
}), g;
|
|
90
86
|
function verb(n) {
|
|
@@ -97,7 +93,7 @@ function _ts_generator(thisArg, body) {
|
|
|
97
93
|
}
|
|
98
94
|
function step(op) {
|
|
99
95
|
if (f) throw new TypeError("Generator is already executing.");
|
|
100
|
-
while(_)try {
|
|
96
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
101
97
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
102
98
|
if (y = 0, t) op = [
|
|
103
99
|
op[0] & 2,
|
|
@@ -32,7 +32,7 @@ function _type_of(obj) {
|
|
|
32
32
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
33
33
|
}
|
|
34
34
|
function _ts_generator(thisArg, body) {
|
|
35
|
-
var f, y, t,
|
|
35
|
+
var f, y, t, _ = {
|
|
36
36
|
label: 0,
|
|
37
37
|
sent: function() {
|
|
38
38
|
if (t[0] & 1) throw t[1];
|
|
@@ -40,12 +40,8 @@ function _ts_generator(thisArg, body) {
|
|
|
40
40
|
},
|
|
41
41
|
trys: [],
|
|
42
42
|
ops: []
|
|
43
|
-
};
|
|
44
|
-
return g = {
|
|
45
|
-
next: verb(0),
|
|
46
|
-
"throw": verb(1),
|
|
47
|
-
"return": verb(2)
|
|
48
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
43
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
44
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
49
45
|
return this;
|
|
50
46
|
}), g;
|
|
51
47
|
function verb(n) {
|
|
@@ -58,7 +54,7 @@ function _ts_generator(thisArg, body) {
|
|
|
58
54
|
}
|
|
59
55
|
function step(op) {
|
|
60
56
|
if (f) throw new TypeError("Generator is already executing.");
|
|
61
|
-
while(_)try {
|
|
57
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
62
58
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
63
59
|
if (y = 0, t) op = [
|
|
64
60
|
op[0] & 2,
|
|
@@ -99,7 +99,7 @@ function _object_spread_props(target, source) {
|
|
|
99
99
|
return target;
|
|
100
100
|
}
|
|
101
101
|
function _ts_generator(thisArg, body) {
|
|
102
|
-
var f, y, t,
|
|
102
|
+
var f, y, t, _ = {
|
|
103
103
|
label: 0,
|
|
104
104
|
sent: function() {
|
|
105
105
|
if (t[0] & 1) throw t[1];
|
|
@@ -107,12 +107,8 @@ function _ts_generator(thisArg, body) {
|
|
|
107
107
|
},
|
|
108
108
|
trys: [],
|
|
109
109
|
ops: []
|
|
110
|
-
};
|
|
111
|
-
return g = {
|
|
112
|
-
next: verb(0),
|
|
113
|
-
"throw": verb(1),
|
|
114
|
-
"return": verb(2)
|
|
115
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
110
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
111
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
116
112
|
return this;
|
|
117
113
|
}), g;
|
|
118
114
|
function verb(n) {
|
|
@@ -125,7 +121,7 @@ function _ts_generator(thisArg, body) {
|
|
|
125
121
|
}
|
|
126
122
|
function step(op) {
|
|
127
123
|
if (f) throw new TypeError("Generator is already executing.");
|
|
128
|
-
while(_)try {
|
|
124
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
129
125
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
130
126
|
if (y = 0, t) op = [
|
|
131
127
|
op[0] & 2,
|
|
@@ -80,7 +80,7 @@ function _object_spread_props(target, source) {
|
|
|
80
80
|
return target;
|
|
81
81
|
}
|
|
82
82
|
function _ts_generator(thisArg, body) {
|
|
83
|
-
var f, y, t,
|
|
83
|
+
var f, y, t, _ = {
|
|
84
84
|
label: 0,
|
|
85
85
|
sent: function() {
|
|
86
86
|
if (t[0] & 1) throw t[1];
|
|
@@ -88,12 +88,8 @@ function _ts_generator(thisArg, body) {
|
|
|
88
88
|
},
|
|
89
89
|
trys: [],
|
|
90
90
|
ops: []
|
|
91
|
-
};
|
|
92
|
-
return g = {
|
|
93
|
-
next: verb(0),
|
|
94
|
-
"throw": verb(1),
|
|
95
|
-
"return": verb(2)
|
|
96
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
91
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
92
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
97
93
|
return this;
|
|
98
94
|
}), g;
|
|
99
95
|
function verb(n) {
|
|
@@ -106,7 +102,7 @@ function _ts_generator(thisArg, body) {
|
|
|
106
102
|
}
|
|
107
103
|
function step(op) {
|
|
108
104
|
if (f) throw new TypeError("Generator is already executing.");
|
|
109
|
-
while(_)try {
|
|
105
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
110
106
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
111
107
|
if (y = 0, t) op = [
|
|
112
108
|
op[0] & 2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ama-sdk/client-fetch",
|
|
3
|
-
"version": "12.3.0-prerelease.
|
|
3
|
+
"version": "12.3.0-prerelease.70",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,17 +38,18 @@
|
|
|
38
38
|
"build:builders": "tsc -b tsconfig.builders.json --pretty && yarn generate-cjs-manifest"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
+
"@o3r/schematics": "^12.3.0-prerelease.70",
|
|
41
42
|
"@swc/helpers": "~0.5.0",
|
|
42
43
|
"ts-node": "~10.9.2",
|
|
43
44
|
"tslib": "^2.6.2",
|
|
44
45
|
"uuid": "^11.0.5"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
|
-
"@ama-sdk/core": "^12.3.0-prerelease.
|
|
48
|
+
"@ama-sdk/core": "^12.3.0-prerelease.70",
|
|
48
49
|
"@angular-devkit/schematics": "^19.0.0",
|
|
49
50
|
"@angular/cli": "^19.0.0",
|
|
50
51
|
"@angular/common": "^19.0.0",
|
|
51
|
-
"@o3r/schematics": "^12.3.0-prerelease.
|
|
52
|
+
"@o3r/schematics": "^12.3.0-prerelease.70",
|
|
52
53
|
"@schematics/angular": "^19.0.0",
|
|
53
54
|
"isomorphic-fetch": "^3.0.0",
|
|
54
55
|
"typescript": "^5.5.4"
|
|
@@ -77,30 +78,29 @@
|
|
|
77
78
|
}
|
|
78
79
|
},
|
|
79
80
|
"devDependencies": {
|
|
80
|
-
"@ama-sdk/core": "^12.3.0-prerelease.
|
|
81
|
+
"@ama-sdk/core": "^12.3.0-prerelease.70",
|
|
81
82
|
"@angular-devkit/core": "~19.2.0",
|
|
82
83
|
"@angular-devkit/schematics": "~19.2.0",
|
|
83
84
|
"@angular/common": "~19.2.0",
|
|
84
85
|
"@angular/core": "~19.2.0",
|
|
85
86
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
|
|
86
|
-
"@nx/eslint-plugin": "~20.
|
|
87
|
-
"@nx/jest": "~20.
|
|
88
|
-
"@o3r/build-helpers": "^12.3.0-prerelease.
|
|
89
|
-
"@o3r/eslint-plugin": "^12.3.0-prerelease.
|
|
90
|
-
"@o3r/
|
|
91
|
-
"@o3r/test-helpers": "^12.3.0-prerelease.7",
|
|
87
|
+
"@nx/eslint-plugin": "~20.8.0",
|
|
88
|
+
"@nx/jest": "~20.8.0",
|
|
89
|
+
"@o3r/build-helpers": "^12.3.0-prerelease.70",
|
|
90
|
+
"@o3r/eslint-plugin": "^12.3.0-prerelease.70",
|
|
91
|
+
"@o3r/test-helpers": "^12.3.0-prerelease.70",
|
|
92
92
|
"@schematics/angular": "~19.2.0",
|
|
93
93
|
"@stylistic/eslint-plugin": "~3.1.0",
|
|
94
94
|
"@stylistic/eslint-plugin-ts": "~3.1.0",
|
|
95
|
-
"@swc/cli": "~0.
|
|
95
|
+
"@swc/cli": "~0.7.7",
|
|
96
96
|
"@swc/core": "~1.11.0",
|
|
97
97
|
"@types/jest": "~29.5.2",
|
|
98
98
|
"@types/node": "^20.0.0",
|
|
99
99
|
"@types/uuid": "^10.0.0",
|
|
100
|
-
"@typescript-eslint/parser": "~8.
|
|
101
|
-
"angular-eslint": "~19.
|
|
100
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
101
|
+
"angular-eslint": "~19.4.0",
|
|
102
102
|
"cpy-cli": "^5.0.0",
|
|
103
|
-
"eslint": "~9.
|
|
103
|
+
"eslint": "~9.26.0",
|
|
104
104
|
"eslint-import-resolver-node": "~0.3.9",
|
|
105
105
|
"eslint-import-resolver-typescript": "~3.10.0",
|
|
106
106
|
"eslint-plugin-import": "~2.31.0",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"ts-node": "~10.9.2",
|
|
124
124
|
"type-fest": "^4.30.1",
|
|
125
125
|
"typescript": "~5.8.2",
|
|
126
|
-
"typescript-eslint": "~8.
|
|
126
|
+
"typescript-eslint": "~8.32.0",
|
|
127
127
|
"zone.js": "~0.15.0"
|
|
128
128
|
},
|
|
129
129
|
"engines": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,IAAI,EACL,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,IAAI,EACL,MAAM,4BAA4B,CAAC;AAkBpC,OAAO,KAAK,EACV,qBAAqB,EACtB,MAAM,UAAU,CAAC;AAmDlB;;;GAGG;AACH,eAAO,MAAM,KAAK,GAAI,SAAS,qBAAqB,SAA2C,CAAC"}
|
|
@@ -3,37 +3,30 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ngAdd = void 0;
|
|
4
4
|
const path = require("node:path");
|
|
5
5
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
6
|
+
const schematics_2 = require("@o3r/schematics");
|
|
6
7
|
const dependencies_1 = require("@schematics/angular/utility/dependencies");
|
|
7
8
|
const import_map_1 = require("./migration/import-map");
|
|
8
9
|
const devDependenciesToInstall = [];
|
|
9
|
-
const reportMissingSchematicsDep = (logger) => (reason) => {
|
|
10
|
-
logger.error(`[ERROR]: Adding @ama-sdk/client-fetch has failed.
|
|
11
|
-
If the error is related to missing @o3r dependencies you need to install '@o3r/schematics' as devDependency to be able to use this schematics. Please run 'ng add @o3r/schematics'.
|
|
12
|
-
Otherwise, use the error message as guidance.`);
|
|
13
|
-
throw reason;
|
|
14
|
-
};
|
|
15
10
|
/**
|
|
16
11
|
* Add SDk Fetch Client to an Otter Project
|
|
17
12
|
* @param options
|
|
18
13
|
*/
|
|
19
14
|
function ngAddFn(options) {
|
|
20
|
-
return
|
|
21
|
-
|
|
22
|
-
const { getPackageInstallConfig, applyEsLintFix, setupDependencies, getO3rPeerDeps, getProjectNewDependenciesTypes, getWorkspaceConfig, getExternalDependenciesVersionRange, updateImports } = await Promise.resolve().then(() => require('@o3r/schematics'));
|
|
23
|
-
const workspaceProject = options.projectName ? getWorkspaceConfig(tree)?.projects[options.projectName] : undefined;
|
|
15
|
+
return (tree, context) => {
|
|
16
|
+
const workspaceProject = options.projectName ? (0, schematics_2.getWorkspaceConfig)(tree)?.projects[options.projectName] : undefined;
|
|
24
17
|
const packageJsonPath = path.resolve(__dirname, '..', '..', 'package.json');
|
|
25
|
-
const depsInfo = getO3rPeerDeps(packageJsonPath);
|
|
18
|
+
const depsInfo = (0, schematics_2.getO3rPeerDeps)(packageJsonPath);
|
|
26
19
|
const dependencies = depsInfo.o3rPeerDeps.reduce((acc, dep) => {
|
|
27
20
|
acc[dep] = {
|
|
28
21
|
inManifest: [{
|
|
29
22
|
range: `${options.exactO3rVersion ? '' : '~'}${depsInfo.packageVersion}`,
|
|
30
|
-
types: getProjectNewDependenciesTypes(workspaceProject)
|
|
23
|
+
types: (0, schematics_2.getProjectNewDependenciesTypes)(workspaceProject)
|
|
31
24
|
}],
|
|
32
25
|
ngAddOptions: { exactO3rVersion: options.exactO3rVersion }
|
|
33
26
|
};
|
|
34
27
|
return acc;
|
|
35
|
-
}, getPackageInstallConfig(packageJsonPath, tree, options.projectName, false, !!options.exactO3rVersion));
|
|
36
|
-
Object.entries(getExternalDependenciesVersionRange(devDependenciesToInstall, packageJsonPath, context.logger))
|
|
28
|
+
}, (0, schematics_2.getPackageInstallConfig)(packageJsonPath, tree, options.projectName, false, !!options.exactO3rVersion));
|
|
29
|
+
Object.entries((0, schematics_2.getExternalDependenciesVersionRange)(devDependenciesToInstall, packageJsonPath, context.logger))
|
|
37
30
|
.forEach(([dep, range]) => {
|
|
38
31
|
dependencies[dep] = {
|
|
39
32
|
inManifest: [{
|
|
@@ -44,14 +37,14 @@ function ngAddFn(options) {
|
|
|
44
37
|
});
|
|
45
38
|
return (0, schematics_1.chain)([
|
|
46
39
|
// optional custom action dedicated to this module
|
|
47
|
-
options.skipLinter ? (0, schematics_1.noop)() : applyEsLintFix(),
|
|
40
|
+
options.skipLinter ? (0, schematics_1.noop)() : (0, schematics_2.applyEsLintFix)(),
|
|
48
41
|
// add the missing Otter modules in the current project
|
|
49
|
-
setupDependencies({
|
|
42
|
+
(0, schematics_2.setupDependencies)({
|
|
50
43
|
projectName: options.projectName,
|
|
51
44
|
dependencies,
|
|
52
45
|
ngAddToRun: depsInfo.o3rPeerDeps
|
|
53
46
|
}),
|
|
54
|
-
updateImports(import_map_1.mapMigrationFromCoreImports)
|
|
47
|
+
(0, schematics_2.updateImports)(import_map_1.mapMigrationFromCoreImports)
|
|
55
48
|
]);
|
|
56
49
|
};
|
|
57
50
|
}
|
|
@@ -59,9 +52,6 @@ function ngAddFn(options) {
|
|
|
59
52
|
* Add SDk Fetch Client to an Otter Project
|
|
60
53
|
* @param options
|
|
61
54
|
*/
|
|
62
|
-
const ngAdd = (options) =>
|
|
63
|
-
const { createOtterSchematic } = await Promise.resolve().then(() => require('@o3r/schematics')).catch(reportMissingSchematicsDep(logger));
|
|
64
|
-
return createOtterSchematic(ngAddFn)(options);
|
|
65
|
-
};
|
|
55
|
+
const ngAdd = (options) => (0, schematics_2.createOtterSchematic)(ngAddFn)(options);
|
|
66
56
|
exports.ngAdd = ngAdd;
|
|
67
57
|
//# sourceMappingURL=index.js.map
|
|
@@ -60,7 +60,7 @@ export declare class ApiFetchClient implements ApiClient {
|
|
|
60
60
|
[key: string]: string | undefined;
|
|
61
61
|
}): string;
|
|
62
62
|
/** @inheritdoc */
|
|
63
|
-
prepareUrlWithQueryParams(url: string, serializedQueryParams
|
|
63
|
+
prepareUrlWithQueryParams(url: string, serializedQueryParams?: {
|
|
64
64
|
[key: string]: string;
|
|
65
65
|
}): string;
|
|
66
66
|
/** @inheritdoc */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-fetch-client.d.ts","sourceRoot":"","sources":["../../src/api-fetch-client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,SAAS,EACT,QAAQ,EACR,oBAAoB,EACpB,kBAAkB,EAClB,aAAa,EAEb,cAAc,EACd,wBAAwB,EACxB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EACjB,MAAM,eAAe,CAAC;AAoBvB,OAAO,KAAK,EAEV,WAAW,EAEZ,MAAM,gBAAgB,CAAC;AAExB,gCAAgC;AAChC,MAAM,WAAW,yBAA0B,SAAQ,oBAAoB;IACrE,iDAAiD;IACjD,YAAY,EAAE,WAAW,EAAE,CAAC;CAC7B;AAED,8BAA8B;AAC9B,MAAM,WAAW,6BAA8B,SAAQ,aAAa,CAAC,yBAAyB,EAAE,UAAU,CAAC;CAC1G;
|
|
1
|
+
{"version":3,"file":"api-fetch-client.d.ts","sourceRoot":"","sources":["../../src/api-fetch-client.ts"],"names":[],"mappings":"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"}
|
package/src/api-fetch-client.js
CHANGED
|
@@ -4,7 +4,8 @@ const DEFAULT_OPTIONS = {
|
|
|
4
4
|
fetchPlugins: [],
|
|
5
5
|
requestPlugins: [],
|
|
6
6
|
enableTokenization: false,
|
|
7
|
-
disableFallback: false
|
|
7
|
+
disableFallback: false,
|
|
8
|
+
enableParameterSerialization: false
|
|
8
9
|
};
|
|
9
10
|
/** Client to process the call to the API using Fetch API */
|
|
10
11
|
export class ApiFetchClient {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-fetch-client.js","sourceRoot":"","sources":["../../src/api-fetch-client.ts"],"names":[],"mappings":"AAaA,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EACd,kBAAkB,EAClB,qBAAqB,EACrB,qBAAqB,EACrB,kBAAkB,EAClB,UAAU,EACV,yBAAyB,EACzB,eAAe,EACf,kBAAkB,EAClB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,eAAe,CAAC;AAiBvB,MAAM,eAAe,GAAG;IACtB,YAAY,EAAE,CAAC,IAAI,YAAY,EAAE,EAAE,IAAI,cAAc,EAAE,CAAC;IACxD,YAAY,EAAE,EAAE;IAChB,cAAc,EAAE,EAAE;IAClB,kBAAkB,EAAE,KAAK;IACzB,eAAe,EAAE,KAAK;
|
|
1
|
+
{"version":3,"file":"api-fetch-client.js","sourceRoot":"","sources":["../../src/api-fetch-client.ts"],"names":[],"mappings":"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"}
|