@grapadigital/shared-app-modules 0.0.145 → 0.0.146
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/action.d.ts +7 -0
- package/dist/components.d.ts +7 -0
- package/dist/content.d.ts +7 -0
- package/dist/invoice.d.ts +7 -0
- package/dist/payment.d.ts +7 -0
- package/dist/recruitment.d.ts +7 -0
- package/dist/sale.d.ts +7 -0
- package/package.json +1 -1
package/dist/action.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ declare interface Payment {
|
|
|
357
362
|
declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review_2;
|
|
@@ -368,6 +374,7 @@ declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note_3[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/components.d.ts
CHANGED
|
@@ -456,6 +456,11 @@ declare interface InstallmentInfo {
|
|
|
456
456
|
|
|
457
457
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
458
458
|
|
|
459
|
+
declare interface Installments {
|
|
460
|
+
installmentNumber: number;
|
|
461
|
+
value: number;
|
|
462
|
+
}
|
|
463
|
+
|
|
459
464
|
declare interface Invoiced {
|
|
460
465
|
code: string;
|
|
461
466
|
issueDate: string;
|
|
@@ -610,6 +615,7 @@ declare interface Payment {
|
|
|
610
615
|
declare interface PaymentInterface {
|
|
611
616
|
_id: string;
|
|
612
617
|
title: string;
|
|
618
|
+
totalInstallments: number;
|
|
613
619
|
attachments: Attachments[];
|
|
614
620
|
pending?: Pending;
|
|
615
621
|
review?: Review_2;
|
|
@@ -621,6 +627,7 @@ declare interface PaymentInterface {
|
|
|
621
627
|
notes?: Note_3[];
|
|
622
628
|
tags?: string[];
|
|
623
629
|
phase: PaymentPhase;
|
|
630
|
+
installments: Installments[];
|
|
624
631
|
}
|
|
625
632
|
|
|
626
633
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/content.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ declare interface Payment {
|
|
|
357
362
|
declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review_2;
|
|
@@ -368,6 +374,7 @@ declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note_3[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/invoice.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
export declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ declare interface Payment {
|
|
|
357
362
|
declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review_2;
|
|
@@ -368,6 +374,7 @@ declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note_3[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/payment.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ declare interface Payment {
|
|
|
357
362
|
export declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review;
|
|
@@ -368,6 +374,7 @@ export declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
export declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/recruitment.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ export declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
export declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ export declare interface Payment {
|
|
|
357
362
|
declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review_2;
|
|
@@ -368,6 +374,7 @@ declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note_3[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|
package/dist/sale.d.ts
CHANGED
|
@@ -250,6 +250,11 @@ declare interface InstallmentInfo {
|
|
|
250
250
|
|
|
251
251
|
declare type InstallmentInfoArray = Array<InstallmentInfo>;
|
|
252
252
|
|
|
253
|
+
declare interface Installments {
|
|
254
|
+
installmentNumber: number;
|
|
255
|
+
value: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
253
258
|
declare interface Invoiced {
|
|
254
259
|
code: string;
|
|
255
260
|
issueDate: string;
|
|
@@ -357,6 +362,7 @@ declare interface Payment {
|
|
|
357
362
|
declare interface PaymentInterface {
|
|
358
363
|
_id: string;
|
|
359
364
|
title: string;
|
|
365
|
+
totalInstallments: number;
|
|
360
366
|
attachments: Attachments[];
|
|
361
367
|
pending?: Pending;
|
|
362
368
|
review?: Review_2;
|
|
@@ -368,6 +374,7 @@ declare interface PaymentInterface {
|
|
|
368
374
|
notes?: Note_3[];
|
|
369
375
|
tags?: string[];
|
|
370
376
|
phase: PaymentPhase;
|
|
377
|
+
installments: Installments[];
|
|
371
378
|
}
|
|
372
379
|
|
|
373
380
|
declare type PaymentPhase = "pending" | "review" | "approval" | "awaiting" | "requested" | "received" | "queued" | "paid" | "client" | "canceled";
|