@grapadigital/shared-schemas 1.0.93 → 1.0.94
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.
|
@@ -52,7 +52,7 @@ export declare class Pending {
|
|
|
52
52
|
requester: Requester;
|
|
53
53
|
type: 'influencer' | 'advisor' | 'supplier' | 'employee_refund' | 'influencer_refund' | 'logistics_control' | 'transfer_between_accounts';
|
|
54
54
|
purpose?: 'Envio SP' | 'Envio Outros' | 'Passagem' | 'Hospedagem' | 'Compras' | 'Logistica Time' | 'Conta Simples';
|
|
55
|
-
adidasCategory?: 'Originals' | '
|
|
55
|
+
adidasCategory?: 'Originals' | 'Running' | 'Football' | 'Training' | 'Omni';
|
|
56
56
|
influencer?: Types.ObjectId | Influencer;
|
|
57
57
|
supplier?: Types.ObjectId | Supplier;
|
|
58
58
|
recruitment?: Types.ObjectId | Recruitment;
|
package/package.json
CHANGED
|
@@ -61,14 +61,14 @@ export class Pending {
|
|
|
61
61
|
type: String,
|
|
62
62
|
enum: [
|
|
63
63
|
'Originals',
|
|
64
|
-
'
|
|
64
|
+
'Running',
|
|
65
65
|
'Football',
|
|
66
66
|
'Training',
|
|
67
67
|
'Omni'
|
|
68
68
|
],
|
|
69
69
|
required: false
|
|
70
70
|
})
|
|
71
|
-
adidasCategory?: 'Originals' | '
|
|
71
|
+
adidasCategory?: 'Originals' | 'Running' | 'Football' | 'Training' | 'Omni';
|
|
72
72
|
|
|
73
73
|
@Prop({ type: MongooseSchema.Types.ObjectId, ref: 'Influencer'})
|
|
74
74
|
influencer?: Types.ObjectId | Influencer;
|