@lcdp/api-react-rest-client 3.3.0-develop.25665945015 → 3.3.0-develop.25666068643
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/auth/src/runtime.d.ts +2 -2
- package/auth/src/runtime.js +8 -12
- package/banking-operation/src/runtime.d.ts +2 -2
- package/banking-operation/src/runtime.js +8 -12
- package/catalog/src/runtime.d.ts +2 -2
- package/catalog/src/runtime.js +8 -12
- package/challenge/src/runtime.d.ts +2 -2
- package/challenge/src/runtime.js +8 -12
- package/chargebee-hook/src/runtime.d.ts +2 -2
- package/chargebee-hook/src/runtime.js +8 -12
- package/configuration/src/runtime.d.ts +2 -2
- package/configuration/src/runtime.js +8 -12
- package/content/src/runtime.d.ts +2 -2
- package/content/src/runtime.js +8 -12
- package/factory/src/runtime.d.ts +2 -2
- package/factory/src/runtime.js +8 -12
- package/favorite/src/runtime.d.ts +2 -2
- package/favorite/src/runtime.js +8 -12
- package/geo/src/runtime.d.ts +2 -2
- package/geo/src/runtime.js +8 -12
- package/inventory/src/runtime.d.ts +2 -2
- package/inventory/src/runtime.js +8 -12
- package/invoice/src/runtime.d.ts +2 -2
- package/invoice/src/runtime.js +8 -12
- package/laboratory/src/runtime.d.ts +2 -2
- package/laboratory/src/runtime.js +8 -12
- package/laboratory-store/src/runtime.d.ts +2 -2
- package/laboratory-store/src/runtime.js +8 -12
- package/laboratory-store-log/src/runtime.d.ts +2 -2
- package/laboratory-store-log/src/runtime.js +8 -12
- package/lexicon/src/runtime.d.ts +2 -2
- package/lexicon/src/runtime.js +8 -12
- package/litigation/src/runtime.d.ts +2 -2
- package/litigation/src/runtime.js +8 -12
- package/magic-cart/src/runtime.d.ts +2 -2
- package/magic-cart/src/runtime.js +8 -12
- package/mandate/src/runtime.d.ts +2 -2
- package/mandate/src/runtime.js +8 -12
- package/mangopay-hook/src/runtime.d.ts +2 -2
- package/mangopay-hook/src/runtime.js +8 -12
- package/message/src/runtime.d.ts +2 -2
- package/message/src/runtime.js +8 -12
- package/notification/src/runtime.d.ts +2 -2
- package/notification/src/runtime.js +8 -12
- package/order/src/runtime.d.ts +2 -2
- package/order/src/runtime.js +8 -12
- package/order-log/src/runtime.d.ts +2 -2
- package/order-log/src/runtime.js +8 -12
- package/outrage-message/src/runtime.d.ts +2 -2
- package/outrage-message/src/runtime.js +8 -12
- package/package.json +1 -1
- package/product/src/runtime.d.ts +2 -2
- package/product/src/runtime.js +8 -12
- package/pub/src/runtime.d.ts +2 -2
- package/pub/src/runtime.js +8 -12
- package/recommendation/src/runtime.d.ts +2 -2
- package/recommendation/src/runtime.js +8 -12
- package/rfx/src/runtime.d.ts +2 -2
- package/rfx/src/runtime.js +8 -12
- package/sale-offer/src/runtime.d.ts +2 -2
- package/sale-offer/src/runtime.js +8 -12
- package/sale-offer-log/src/runtime.d.ts +2 -2
- package/sale-offer-log/src/runtime.js +8 -12
- package/servant/src/runtime.d.ts +2 -2
- package/servant/src/runtime.js +8 -12
- package/shipment/src/runtime.d.ts +2 -2
- package/shipment/src/runtime.js +8 -12
- package/shopping-cart/src/runtime.d.ts +2 -2
- package/shopping-cart/src/runtime.js +8 -12
- package/smuggler/src/runtime.d.ts +2 -2
- package/smuggler/src/runtime.js +8 -12
- package/statistic/src/runtime.d.ts +2 -2
- package/statistic/src/runtime.js +8 -12
- package/subscription/src/runtime.d.ts +2 -2
- package/subscription/src/runtime.js +8 -12
- package/third-party/src/runtime.d.ts +2 -2
- package/third-party/src/runtime.js +8 -12
- package/thread/src/runtime.d.ts +2 -2
- package/thread/src/runtime.js +8 -12
- package/ubo/src/runtime.d.ts +2 -2
- package/ubo/src/runtime.js +8 -12
- package/user/src/runtime.d.ts +2 -2
- package/user/src/runtime.js +8 -12
- package/wish/src/runtime.d.ts +2 -2
- package/wish/src/runtime.js +8 -12
package/auth/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/auth/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
package/catalog/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/catalog/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/challenge/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
package/content/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/content/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
package/factory/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/factory/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/favorite/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
package/geo/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/geo/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/inventory/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
package/invoice/src/runtime.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
package/invoice/src/runtime.js
CHANGED
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|
|
@@ -560,20 +560,16 @@ var BlobWithMetaApiResponse = /** @class */ (function () {
|
|
|
560
560
|
;
|
|
561
561
|
BlobWithMetaApiResponse.prototype.extractFilename = function (headers) {
|
|
562
562
|
var headerName = 'Content-Disposition';
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
566
|
-
var matches = filenameRegex.exec(headerValue);
|
|
567
|
-
if (matches != null && matches[1]) {
|
|
568
|
-
return matches[1];
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return undefined;
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
else {
|
|
563
|
+
var headerValue = headers.get(headerName);
|
|
564
|
+
if (headerValue == null) {
|
|
575
565
|
return undefined;
|
|
576
566
|
}
|
|
567
|
+
var filenameRegex = /filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/;
|
|
568
|
+
var matches = filenameRegex.exec(headerValue);
|
|
569
|
+
if (matches != null && matches[1]) {
|
|
570
|
+
return matches[1];
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
577
573
|
};
|
|
578
574
|
return BlobWithMetaApiResponse;
|
|
579
575
|
}());
|
|
@@ -127,7 +127,7 @@ export interface RequestOpts {
|
|
|
127
127
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
128
128
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
129
129
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
130
|
-
export declare function toDateISOString(date:
|
|
130
|
+
export declare function toDateISOString<D extends Date | null | undefined>(date: D): D extends Date ? string : D;
|
|
131
131
|
export interface Consume {
|
|
132
132
|
contentType: string;
|
|
133
133
|
}
|
|
@@ -174,7 +174,7 @@ export declare class VoidApiResponse {
|
|
|
174
174
|
}
|
|
175
175
|
export interface BlobWithMeta {
|
|
176
176
|
blob: Blob;
|
|
177
|
-
filename
|
|
177
|
+
filename?: string;
|
|
178
178
|
}
|
|
179
179
|
export declare function instanceOfBlobWithMeta(object: any): object is BlobWithMeta;
|
|
180
180
|
export declare class BlobWithMetaApiResponse {
|