repzo 1.0.100 → 1.0.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/types/index.d.ts +11 -11
- package/package.json +1 -1
- package/src/types/index.ts +11 -11
package/lib/types/index.d.ts
CHANGED
|
@@ -10289,12 +10289,12 @@ export declare namespace Service {
|
|
|
10289
10289
|
doc_type?: string[] | string;
|
|
10290
10290
|
};
|
|
10291
10291
|
interface Result extends DefaultPaginationResult {
|
|
10292
|
-
data: Data[]
|
|
10292
|
+
data: Data[] & PopulatedDoc[];
|
|
10293
10293
|
}
|
|
10294
10294
|
}
|
|
10295
10295
|
namespace Get {
|
|
10296
10296
|
type ID = string;
|
|
10297
|
-
type Result = Data
|
|
10297
|
+
type Result = Data & PopulatedDoc;
|
|
10298
10298
|
}
|
|
10299
10299
|
namespace Create {
|
|
10300
10300
|
type Body = CreateBody;
|
|
@@ -10336,7 +10336,7 @@ export declare namespace Service {
|
|
|
10336
10336
|
company_namespace: string[];
|
|
10337
10337
|
disabled: boolean;
|
|
10338
10338
|
template: StringId;
|
|
10339
|
-
|
|
10339
|
+
template_populated: OcrInvoiceJobTemplate.Data;
|
|
10340
10340
|
client: StringId;
|
|
10341
10341
|
client_populated: Pick<Client.ClientSchema, "name" | "_id">;
|
|
10342
10342
|
doc_type: "pdf" | "image";
|
|
@@ -10384,12 +10384,12 @@ export declare namespace Service {
|
|
|
10384
10384
|
search?: string;
|
|
10385
10385
|
};
|
|
10386
10386
|
interface Result extends DefaultPaginationResult {
|
|
10387
|
-
data: Data[]
|
|
10387
|
+
data: Data[] & PopulatedDoc[];
|
|
10388
10388
|
}
|
|
10389
10389
|
}
|
|
10390
10390
|
namespace Get {
|
|
10391
10391
|
type ID = string;
|
|
10392
|
-
type Result = Data
|
|
10392
|
+
type Result = Data & PopulatedDoc;
|
|
10393
10393
|
}
|
|
10394
10394
|
namespace Create {
|
|
10395
10395
|
type Body = CreateBody;
|
|
@@ -10545,12 +10545,12 @@ export declare namespace Service {
|
|
|
10545
10545
|
job_group?: StringId[] | StringId;
|
|
10546
10546
|
};
|
|
10547
10547
|
interface Result extends DefaultPaginationResult {
|
|
10548
|
-
data: Data[]
|
|
10548
|
+
data: Data[] & PopulatedDoc[];
|
|
10549
10549
|
}
|
|
10550
10550
|
}
|
|
10551
10551
|
export namespace Get {
|
|
10552
10552
|
type ID = string;
|
|
10553
|
-
type Result = Data
|
|
10553
|
+
type Result = Data & PopulatedDoc;
|
|
10554
10554
|
}
|
|
10555
10555
|
export {};
|
|
10556
10556
|
}
|
|
@@ -10776,12 +10776,12 @@ export declare namespace Service {
|
|
|
10776
10776
|
status: string | string[];
|
|
10777
10777
|
};
|
|
10778
10778
|
interface Result extends DefaultPaginationResult {
|
|
10779
|
-
data: Data[]
|
|
10779
|
+
data: Data[] & PopulatedDoc[];
|
|
10780
10780
|
}
|
|
10781
10781
|
}
|
|
10782
10782
|
namespace Get {
|
|
10783
10783
|
type ID = string;
|
|
10784
|
-
type Result = Data
|
|
10784
|
+
type Result = Data & PopulatedDoc;
|
|
10785
10785
|
}
|
|
10786
10786
|
namespace Update {
|
|
10787
10787
|
type ID = StringId;
|
|
@@ -10919,12 +10919,12 @@ export declare namespace Service {
|
|
|
10919
10919
|
status: string | string[];
|
|
10920
10920
|
};
|
|
10921
10921
|
interface Result extends DefaultPaginationResult {
|
|
10922
|
-
data: Data[]
|
|
10922
|
+
data: Data[] & PopulatedDoc[];
|
|
10923
10923
|
}
|
|
10924
10924
|
}
|
|
10925
10925
|
namespace Get {
|
|
10926
10926
|
type ID = string;
|
|
10927
|
-
type Result = Data
|
|
10927
|
+
type Result = Data & PopulatedDoc;
|
|
10928
10928
|
}
|
|
10929
10929
|
namespace Create {
|
|
10930
10930
|
type Body = CreateBody;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -10044,12 +10044,12 @@ export namespace Service {
|
|
|
10044
10044
|
doc_type?: string[] | string;
|
|
10045
10045
|
};
|
|
10046
10046
|
export interface Result extends DefaultPaginationResult {
|
|
10047
|
-
data: Data[]
|
|
10047
|
+
data: Data[] & PopulatedDoc[];
|
|
10048
10048
|
}
|
|
10049
10049
|
}
|
|
10050
10050
|
export namespace Get {
|
|
10051
10051
|
export type ID = string;
|
|
10052
|
-
export type Result = Data
|
|
10052
|
+
export type Result = Data & PopulatedDoc;
|
|
10053
10053
|
}
|
|
10054
10054
|
export namespace Create {
|
|
10055
10055
|
export type Body = CreateBody;
|
|
@@ -10092,7 +10092,7 @@ export namespace Service {
|
|
|
10092
10092
|
company_namespace: string[];
|
|
10093
10093
|
disabled: boolean;
|
|
10094
10094
|
template: StringId;
|
|
10095
|
-
|
|
10095
|
+
template_populated: OcrInvoiceJobTemplate.Data;
|
|
10096
10096
|
client: StringId;
|
|
10097
10097
|
client_populated: Pick<Client.ClientSchema, "name" | "_id">;
|
|
10098
10098
|
doc_type: "pdf" | "image";
|
|
@@ -10141,12 +10141,12 @@ export namespace Service {
|
|
|
10141
10141
|
search?: string;
|
|
10142
10142
|
};
|
|
10143
10143
|
export interface Result extends DefaultPaginationResult {
|
|
10144
|
-
data: Data[]
|
|
10144
|
+
data: Data[] & PopulatedDoc[];
|
|
10145
10145
|
}
|
|
10146
10146
|
}
|
|
10147
10147
|
export namespace Get {
|
|
10148
10148
|
export type ID = string;
|
|
10149
|
-
export type Result = Data
|
|
10149
|
+
export type Result = Data & PopulatedDoc;
|
|
10150
10150
|
}
|
|
10151
10151
|
export namespace Create {
|
|
10152
10152
|
export type Body = CreateBody;
|
|
@@ -10315,12 +10315,12 @@ export namespace Service {
|
|
|
10315
10315
|
job_group?: StringId[] | StringId;
|
|
10316
10316
|
};
|
|
10317
10317
|
export interface Result extends DefaultPaginationResult {
|
|
10318
|
-
data: Data[]
|
|
10318
|
+
data: Data[] & PopulatedDoc[];
|
|
10319
10319
|
}
|
|
10320
10320
|
}
|
|
10321
10321
|
export namespace Get {
|
|
10322
10322
|
export type ID = string;
|
|
10323
|
-
export type Result = Data
|
|
10323
|
+
export type Result = Data & PopulatedDoc;
|
|
10324
10324
|
}
|
|
10325
10325
|
}
|
|
10326
10326
|
|
|
@@ -10544,12 +10544,12 @@ export namespace Service {
|
|
|
10544
10544
|
status: string | string[];
|
|
10545
10545
|
};
|
|
10546
10546
|
export interface Result extends DefaultPaginationResult {
|
|
10547
|
-
data: Data[]
|
|
10547
|
+
data: Data[] & PopulatedDoc[];
|
|
10548
10548
|
}
|
|
10549
10549
|
}
|
|
10550
10550
|
export namespace Get {
|
|
10551
10551
|
export type ID = string;
|
|
10552
|
-
export type Result = Data
|
|
10552
|
+
export type Result = Data & PopulatedDoc;
|
|
10553
10553
|
}
|
|
10554
10554
|
export namespace Update {
|
|
10555
10555
|
export type ID = StringId;
|
|
@@ -10688,12 +10688,12 @@ export namespace Service {
|
|
|
10688
10688
|
status: string | string[];
|
|
10689
10689
|
};
|
|
10690
10690
|
export interface Result extends DefaultPaginationResult {
|
|
10691
|
-
data: Data[]
|
|
10691
|
+
data: Data[] & PopulatedDoc[];
|
|
10692
10692
|
}
|
|
10693
10693
|
}
|
|
10694
10694
|
export namespace Get {
|
|
10695
10695
|
export type ID = string;
|
|
10696
|
-
export type Result = Data
|
|
10696
|
+
export type Result = Data & PopulatedDoc;
|
|
10697
10697
|
}
|
|
10698
10698
|
|
|
10699
10699
|
export namespace Create {
|