@uniformdev/redirect 19.158.0 → 19.159.1-alpha.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +22 -22
- package/dist/index.d.ts +22 -22
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -136,17 +136,17 @@ interface paths {
|
|
|
136
136
|
sourceUrl?: string;
|
|
137
137
|
/** Find redirects that could redirect to this url */
|
|
138
138
|
targetUrl?: string;
|
|
139
|
-
/** Id of the project map the source or target belongs to
|
|
139
|
+
/** Id of the project map the source or target belongs to */
|
|
140
140
|
projectMapId?: string;
|
|
141
|
-
/** Id of the project map node to find redirects for
|
|
141
|
+
/** Id of the project map node to find redirects for */
|
|
142
142
|
sourceProjectMapNodeId?: string;
|
|
143
|
-
/** Id of the project map node to find redirects for
|
|
143
|
+
/** Id of the project map node to find redirects for */
|
|
144
144
|
targetProjectMapNodeId?: string;
|
|
145
|
-
/** Column to order results by, only applicable if trie is not active
|
|
145
|
+
/** Column to order results by, only applicable if trie is not active */
|
|
146
146
|
orderBy?: "updated_at asc" | "updated_at desc" | "source_url asc" | "source_url desc" | "target_url asc" | "target_url desc" | "created_by asc" | "created_by desc";
|
|
147
|
-
/** Limit the results to this number of results, ignored if using trie parameter
|
|
147
|
+
/** Limit the results to this number of results, ignored if using trie parameter */
|
|
148
148
|
limit?: number;
|
|
149
|
-
/** Offset the results a certain amount, useful for pagination
|
|
149
|
+
/** Offset the results a certain amount, useful for pagination */
|
|
150
150
|
offset?: number;
|
|
151
151
|
/** Search text to filter redirects by, filtering on the source and target urls */
|
|
152
152
|
search?: string;
|
|
@@ -233,19 +233,19 @@ interface paths {
|
|
|
233
233
|
"application/json": {
|
|
234
234
|
/**
|
|
235
235
|
* Format: uuid
|
|
236
|
-
* @description Redirect id to be deleted
|
|
236
|
+
* @description Redirect id to be deleted
|
|
237
237
|
*/
|
|
238
238
|
id: string;
|
|
239
239
|
/**
|
|
240
240
|
* Format: uuid
|
|
241
|
-
* @description Project the redirect belongs to
|
|
241
|
+
* @description Project the redirect belongs to
|
|
242
242
|
*/
|
|
243
243
|
projectId: string;
|
|
244
244
|
};
|
|
245
245
|
};
|
|
246
246
|
};
|
|
247
247
|
};
|
|
248
|
-
/** Handles preflight requests. This endpoint allows CORS
|
|
248
|
+
/** Handles preflight requests. This endpoint allows CORS */
|
|
249
249
|
options: {
|
|
250
250
|
responses: {
|
|
251
251
|
/** OK */
|
|
@@ -275,41 +275,41 @@ interface components {
|
|
|
275
275
|
Redirect: {
|
|
276
276
|
/**
|
|
277
277
|
* Format: uuid
|
|
278
|
-
* @description Id of the redirect
|
|
278
|
+
* @description Id of the redirect
|
|
279
279
|
*/
|
|
280
280
|
id?: string;
|
|
281
|
-
/** @description Source meant to match a url that needs to be redirected
|
|
281
|
+
/** @description Source meant to match a url that needs to be redirected */
|
|
282
282
|
sourceUrl: string;
|
|
283
|
-
/** @description Target meant to be redirected to
|
|
283
|
+
/** @description Target meant to be redirected to */
|
|
284
284
|
targetUrl: string;
|
|
285
|
-
/** @description Redirect type to occur from this redirect
|
|
285
|
+
/** @description Redirect type to occur from this redirect */
|
|
286
286
|
targetStatusCode: number;
|
|
287
287
|
/**
|
|
288
288
|
* Format: uuid
|
|
289
|
-
* @description Project map node related to the source this redirect
|
|
289
|
+
* @description Project map node related to the source this redirect
|
|
290
290
|
*/
|
|
291
291
|
sourceProjectMapNodeId?: string;
|
|
292
292
|
/**
|
|
293
293
|
* Format: uuid
|
|
294
|
-
* @description Project map node related to the target this redirect
|
|
294
|
+
* @description Project map node related to the target this redirect
|
|
295
295
|
*/
|
|
296
296
|
targetProjectMapNodeId?: string;
|
|
297
297
|
/**
|
|
298
298
|
* Format: uuid
|
|
299
|
-
* @description Project map related to this redirect
|
|
299
|
+
* @description Project map related to this redirect
|
|
300
300
|
*/
|
|
301
301
|
projectMapId?: string;
|
|
302
|
-
/** @description Signals the redirect engine to retain query string parameters to the target url
|
|
302
|
+
/** @description Signals the redirect engine to retain query string parameters to the target url */
|
|
303
303
|
sourceRetainQuerystring?: boolean;
|
|
304
|
-
/** @description Incoming requests must match the domain that's defined in the redirection source
|
|
304
|
+
/** @description Incoming requests must match the domain that's defined in the redirection source */
|
|
305
305
|
sourceMustMatchDomain?: boolean;
|
|
306
|
-
/** @description Rewritten url should match the protocol (http / https) of the incoming request instead of whatever is defined in the redirection target
|
|
306
|
+
/** @description Rewritten url should match the protocol (http / https) of the incoming request instead of whatever is defined in the redirection target */
|
|
307
307
|
targetPreserveIncomingProtocol?: boolean;
|
|
308
|
-
/** @description Rewritten url should match the domain of the incoming request regardless of what is defined in the redirection target
|
|
308
|
+
/** @description Rewritten url should match the domain of the incoming request regardless of what is defined in the redirection target */
|
|
309
309
|
targetPreserveIncomingDomain?: boolean;
|
|
310
|
-
/** @description Merge incoming querystring with the querystring defined on the redirection target, taking the incoming querystring parameter where a merge is not possible
|
|
310
|
+
/** @description Merge incoming querystring with the querystring defined on the redirection target, taking the incoming querystring parameter where a merge is not possible */
|
|
311
311
|
targetMergeQuerystring?: boolean;
|
|
312
|
-
/** @description Label as system generated or user generated
|
|
312
|
+
/** @description Label as system generated or user generated */
|
|
313
313
|
labelAsSystem?: boolean;
|
|
314
314
|
};
|
|
315
315
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -136,17 +136,17 @@ interface paths {
|
|
|
136
136
|
sourceUrl?: string;
|
|
137
137
|
/** Find redirects that could redirect to this url */
|
|
138
138
|
targetUrl?: string;
|
|
139
|
-
/** Id of the project map the source or target belongs to
|
|
139
|
+
/** Id of the project map the source or target belongs to */
|
|
140
140
|
projectMapId?: string;
|
|
141
|
-
/** Id of the project map node to find redirects for
|
|
141
|
+
/** Id of the project map node to find redirects for */
|
|
142
142
|
sourceProjectMapNodeId?: string;
|
|
143
|
-
/** Id of the project map node to find redirects for
|
|
143
|
+
/** Id of the project map node to find redirects for */
|
|
144
144
|
targetProjectMapNodeId?: string;
|
|
145
|
-
/** Column to order results by, only applicable if trie is not active
|
|
145
|
+
/** Column to order results by, only applicable if trie is not active */
|
|
146
146
|
orderBy?: "updated_at asc" | "updated_at desc" | "source_url asc" | "source_url desc" | "target_url asc" | "target_url desc" | "created_by asc" | "created_by desc";
|
|
147
|
-
/** Limit the results to this number of results, ignored if using trie parameter
|
|
147
|
+
/** Limit the results to this number of results, ignored if using trie parameter */
|
|
148
148
|
limit?: number;
|
|
149
|
-
/** Offset the results a certain amount, useful for pagination
|
|
149
|
+
/** Offset the results a certain amount, useful for pagination */
|
|
150
150
|
offset?: number;
|
|
151
151
|
/** Search text to filter redirects by, filtering on the source and target urls */
|
|
152
152
|
search?: string;
|
|
@@ -233,19 +233,19 @@ interface paths {
|
|
|
233
233
|
"application/json": {
|
|
234
234
|
/**
|
|
235
235
|
* Format: uuid
|
|
236
|
-
* @description Redirect id to be deleted
|
|
236
|
+
* @description Redirect id to be deleted
|
|
237
237
|
*/
|
|
238
238
|
id: string;
|
|
239
239
|
/**
|
|
240
240
|
* Format: uuid
|
|
241
|
-
* @description Project the redirect belongs to
|
|
241
|
+
* @description Project the redirect belongs to
|
|
242
242
|
*/
|
|
243
243
|
projectId: string;
|
|
244
244
|
};
|
|
245
245
|
};
|
|
246
246
|
};
|
|
247
247
|
};
|
|
248
|
-
/** Handles preflight requests. This endpoint allows CORS
|
|
248
|
+
/** Handles preflight requests. This endpoint allows CORS */
|
|
249
249
|
options: {
|
|
250
250
|
responses: {
|
|
251
251
|
/** OK */
|
|
@@ -275,41 +275,41 @@ interface components {
|
|
|
275
275
|
Redirect: {
|
|
276
276
|
/**
|
|
277
277
|
* Format: uuid
|
|
278
|
-
* @description Id of the redirect
|
|
278
|
+
* @description Id of the redirect
|
|
279
279
|
*/
|
|
280
280
|
id?: string;
|
|
281
|
-
/** @description Source meant to match a url that needs to be redirected
|
|
281
|
+
/** @description Source meant to match a url that needs to be redirected */
|
|
282
282
|
sourceUrl: string;
|
|
283
|
-
/** @description Target meant to be redirected to
|
|
283
|
+
/** @description Target meant to be redirected to */
|
|
284
284
|
targetUrl: string;
|
|
285
|
-
/** @description Redirect type to occur from this redirect
|
|
285
|
+
/** @description Redirect type to occur from this redirect */
|
|
286
286
|
targetStatusCode: number;
|
|
287
287
|
/**
|
|
288
288
|
* Format: uuid
|
|
289
|
-
* @description Project map node related to the source this redirect
|
|
289
|
+
* @description Project map node related to the source this redirect
|
|
290
290
|
*/
|
|
291
291
|
sourceProjectMapNodeId?: string;
|
|
292
292
|
/**
|
|
293
293
|
* Format: uuid
|
|
294
|
-
* @description Project map node related to the target this redirect
|
|
294
|
+
* @description Project map node related to the target this redirect
|
|
295
295
|
*/
|
|
296
296
|
targetProjectMapNodeId?: string;
|
|
297
297
|
/**
|
|
298
298
|
* Format: uuid
|
|
299
|
-
* @description Project map related to this redirect
|
|
299
|
+
* @description Project map related to this redirect
|
|
300
300
|
*/
|
|
301
301
|
projectMapId?: string;
|
|
302
|
-
/** @description Signals the redirect engine to retain query string parameters to the target url
|
|
302
|
+
/** @description Signals the redirect engine to retain query string parameters to the target url */
|
|
303
303
|
sourceRetainQuerystring?: boolean;
|
|
304
|
-
/** @description Incoming requests must match the domain that's defined in the redirection source
|
|
304
|
+
/** @description Incoming requests must match the domain that's defined in the redirection source */
|
|
305
305
|
sourceMustMatchDomain?: boolean;
|
|
306
|
-
/** @description Rewritten url should match the protocol (http / https) of the incoming request instead of whatever is defined in the redirection target
|
|
306
|
+
/** @description Rewritten url should match the protocol (http / https) of the incoming request instead of whatever is defined in the redirection target */
|
|
307
307
|
targetPreserveIncomingProtocol?: boolean;
|
|
308
|
-
/** @description Rewritten url should match the domain of the incoming request regardless of what is defined in the redirection target
|
|
308
|
+
/** @description Rewritten url should match the domain of the incoming request regardless of what is defined in the redirection target */
|
|
309
309
|
targetPreserveIncomingDomain?: boolean;
|
|
310
|
-
/** @description Merge incoming querystring with the querystring defined on the redirection target, taking the incoming querystring parameter where a merge is not possible
|
|
310
|
+
/** @description Merge incoming querystring with the querystring defined on the redirection target, taking the incoming querystring parameter where a merge is not possible */
|
|
311
311
|
targetMergeQuerystring?: boolean;
|
|
312
|
-
/** @description Label as system generated or user generated
|
|
312
|
+
/** @description Label as system generated or user generated */
|
|
313
313
|
labelAsSystem?: boolean;
|
|
314
314
|
};
|
|
315
315
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/redirect",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.159.1-alpha.16+112313047e",
|
|
4
4
|
"description": "Uniform redirect client",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"/dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/context": "19.
|
|
36
|
+
"@uniformdev/context": "19.159.1-alpha.16+112313047e",
|
|
37
37
|
"p-limit": "^3.1.0",
|
|
38
38
|
"rfdc": "^1.3.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "112313047e98c7a1c0045ea1c5d01a4c74b29871"
|
|
44
44
|
}
|