@vertikalx/vtx-backend-client 3.5.5-dev-ven.4 → 3.5.5-dev-ven.5
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/package.json +1 -1
- package/dist/src/client/schema.d.ts +89 -1
- package/dist/src/client/schema.js +12 -4
- package/dist/src/client/schema.js.map +1 -1
- package/dist/src/client/types.d.ts +43 -0
- package/dist/src/client/types.js +495 -370
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +82 -1
- package/dist/src/generated/graphql.js +36 -0
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -344,6 +344,33 @@ export type AdminWallet = {
|
|
|
344
344
|
hasStripeAccount: Scalars['Boolean']['output'];
|
|
345
345
|
stripeAccountId?: Maybe<Scalars['String']['output']>;
|
|
346
346
|
};
|
|
347
|
+
export type Affiliate = {
|
|
348
|
+
_id: Scalars['String']['output'];
|
|
349
|
+
availableCodes: Scalars['Int']['output'];
|
|
350
|
+
availableCountries?: Maybe<Array<Country>>;
|
|
351
|
+
brand: Brand;
|
|
352
|
+
commissionRate?: Maybe<Scalars['Float']['output']>;
|
|
353
|
+
conditions?: Maybe<Array<Scalars['String']['output']>>;
|
|
354
|
+
criteria?: Maybe<AthleteCriteria>;
|
|
355
|
+
dateCreated: Scalars['DateTime']['output'];
|
|
356
|
+
dateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
357
|
+
dateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
358
|
+
decription?: Maybe<Scalars['String']['output']>;
|
|
359
|
+
disclaimer?: Maybe<Scalars['String']['output']>;
|
|
360
|
+
discountType: Scalars['String']['output'];
|
|
361
|
+
discountTypeData: Scalars['String']['output'];
|
|
362
|
+
featured: Scalars['Boolean']['output'];
|
|
363
|
+
genericCode?: Maybe<Scalars['String']['output']>;
|
|
364
|
+
label: Scalars['String']['output'];
|
|
365
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
366
|
+
offerImage?: Maybe<Awss3File>;
|
|
367
|
+
payoutTerms?: Maybe<Scalars['String']['output']>;
|
|
368
|
+
sponsor: Sponsor;
|
|
369
|
+
status: Scalars['String']['output'];
|
|
370
|
+
totalCodes: Scalars['Int']['output'];
|
|
371
|
+
trackingLinkTemplate?: Maybe<Scalars['String']['output']>;
|
|
372
|
+
type: Scalars['String']['output'];
|
|
373
|
+
};
|
|
347
374
|
export type AgeDetermination = 'AGE_ON_EVENT' | 'YEAR_OF_BIRTH';
|
|
348
375
|
export type AgeQualification = {
|
|
349
376
|
operator: Scalars['String']['output'];
|
|
@@ -1061,6 +1088,7 @@ export type Coupon = {
|
|
|
1061
1088
|
availableCodes: Scalars['Int']['output'];
|
|
1062
1089
|
availableCountries?: Maybe<Array<Country>>;
|
|
1063
1090
|
brand: Brand;
|
|
1091
|
+
commissionRate?: Maybe<Scalars['Float']['output']>;
|
|
1064
1092
|
conditions?: Maybe<Array<Scalars['String']['output']>>;
|
|
1065
1093
|
couponCodes?: Maybe<Array<CouponCode>>;
|
|
1066
1094
|
criteria?: Maybe<AthleteCriteria>;
|
|
@@ -1076,9 +1104,11 @@ export type Coupon = {
|
|
|
1076
1104
|
label: Scalars['String']['output'];
|
|
1077
1105
|
name?: Maybe<Scalars['String']['output']>;
|
|
1078
1106
|
offerImage?: Maybe<Awss3File>;
|
|
1107
|
+
payoutTerms?: Maybe<Scalars['String']['output']>;
|
|
1079
1108
|
sponsor: Sponsor;
|
|
1080
1109
|
status: Scalars['String']['output'];
|
|
1081
1110
|
totalCodes: Scalars['Int']['output'];
|
|
1111
|
+
trackingLinkTemplate?: Maybe<Scalars['String']['output']>;
|
|
1082
1112
|
type: Scalars['String']['output'];
|
|
1083
1113
|
};
|
|
1084
1114
|
export type CouponCode = {
|
|
@@ -1285,6 +1315,7 @@ export type CreateMyBrandDto = {
|
|
|
1285
1315
|
export type CreateOfferDto = {
|
|
1286
1316
|
availableCountryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1287
1317
|
brandId: Scalars['String']['input'];
|
|
1318
|
+
commissionRate?: InputMaybe<Scalars['Float']['input']>;
|
|
1288
1319
|
conditions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1289
1320
|
criteria?: InputMaybe<AthleteCriteriaDto>;
|
|
1290
1321
|
dateEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -1298,9 +1329,11 @@ export type CreateOfferDto = {
|
|
|
1298
1329
|
label: Scalars['String']['input'];
|
|
1299
1330
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1300
1331
|
offerImage?: InputMaybe<Awss3UploadedFileDto>;
|
|
1332
|
+
payoutTerms?: InputMaybe<Scalars['String']['input']>;
|
|
1301
1333
|
sponsorId?: InputMaybe<Scalars['String']['input']>;
|
|
1302
1334
|
status?: Scalars['String']['input'];
|
|
1303
1335
|
totalCodes?: InputMaybe<Scalars['Int']['input']>;
|
|
1336
|
+
trackingLinkTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
1304
1337
|
type: Scalars['String']['input'];
|
|
1305
1338
|
};
|
|
1306
1339
|
export type CreateSponsorDto = {
|
|
@@ -3020,6 +3053,7 @@ export type Offer = {
|
|
|
3020
3053
|
availableCodes: Scalars['Int']['output'];
|
|
3021
3054
|
availableCountries?: Maybe<Array<Country>>;
|
|
3022
3055
|
brand: Brand;
|
|
3056
|
+
commissionRate?: Maybe<Scalars['Float']['output']>;
|
|
3023
3057
|
conditions?: Maybe<Array<Scalars['String']['output']>>;
|
|
3024
3058
|
criteria?: Maybe<AthleteCriteria>;
|
|
3025
3059
|
dateCreated: Scalars['DateTime']['output'];
|
|
@@ -3034,9 +3068,11 @@ export type Offer = {
|
|
|
3034
3068
|
label: Scalars['String']['output'];
|
|
3035
3069
|
name?: Maybe<Scalars['String']['output']>;
|
|
3036
3070
|
offerImage?: Maybe<Awss3File>;
|
|
3071
|
+
payoutTerms?: Maybe<Scalars['String']['output']>;
|
|
3037
3072
|
sponsor: Sponsor;
|
|
3038
3073
|
status: Scalars['String']['output'];
|
|
3039
3074
|
totalCodes: Scalars['Int']['output'];
|
|
3075
|
+
trackingLinkTemplate?: Maybe<Scalars['String']['output']>;
|
|
3040
3076
|
type: Scalars['String']['output'];
|
|
3041
3077
|
};
|
|
3042
3078
|
export type OfferApplicationsQueryDto = {
|
|
@@ -3078,12 +3114,13 @@ export type OfferQueryDto = {
|
|
|
3078
3114
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
3079
3115
|
};
|
|
3080
3116
|
export type OfferStatus = 'ACTIVE' | 'INACTIVE';
|
|
3081
|
-
export type OfferType = 'COUPON' | 'OFFER' | 'PROMOTION' | 'SPONSORSHIP';
|
|
3117
|
+
export type OfferType = 'AFFILIATE' | 'COUPON' | 'OFFER' | 'PROMOTION' | 'SPONSORSHIP';
|
|
3082
3118
|
export type OfferWithEligibility = {
|
|
3083
3119
|
_id: Scalars['String']['output'];
|
|
3084
3120
|
availableCodes: Scalars['Int']['output'];
|
|
3085
3121
|
availableCountries?: Maybe<Array<Country>>;
|
|
3086
3122
|
brand: Brand;
|
|
3123
|
+
commissionRate?: Maybe<Scalars['Float']['output']>;
|
|
3087
3124
|
conditions?: Maybe<Array<Scalars['String']['output']>>;
|
|
3088
3125
|
criteria?: Maybe<AthleteCriteria>;
|
|
3089
3126
|
dateCreated: Scalars['DateTime']['output'];
|
|
@@ -3098,9 +3135,11 @@ export type OfferWithEligibility = {
|
|
|
3098
3135
|
label: Scalars['String']['output'];
|
|
3099
3136
|
name?: Maybe<Scalars['String']['output']>;
|
|
3100
3137
|
offerImage?: Maybe<Awss3File>;
|
|
3138
|
+
payoutTerms?: Maybe<Scalars['String']['output']>;
|
|
3101
3139
|
sponsor: Sponsor;
|
|
3102
3140
|
status: Scalars['String']['output'];
|
|
3103
3141
|
totalCodes: Scalars['Int']['output'];
|
|
3142
|
+
trackingLinkTemplate?: Maybe<Scalars['String']['output']>;
|
|
3104
3143
|
type: Scalars['String']['output'];
|
|
3105
3144
|
};
|
|
3106
3145
|
export type OffsetPaginationDto = {
|
|
@@ -3270,6 +3309,7 @@ export type Promotion = {
|
|
|
3270
3309
|
availableCodes: Scalars['Int']['output'];
|
|
3271
3310
|
availableCountries?: Maybe<Array<Country>>;
|
|
3272
3311
|
brand: Brand;
|
|
3312
|
+
commissionRate?: Maybe<Scalars['Float']['output']>;
|
|
3273
3313
|
conditions?: Maybe<Array<Scalars['String']['output']>>;
|
|
3274
3314
|
criteria?: Maybe<AthleteCriteria>;
|
|
3275
3315
|
dateCreated: Scalars['DateTime']['output'];
|
|
@@ -3284,9 +3324,11 @@ export type Promotion = {
|
|
|
3284
3324
|
label: Scalars['String']['output'];
|
|
3285
3325
|
name?: Maybe<Scalars['String']['output']>;
|
|
3286
3326
|
offerImage?: Maybe<Awss3File>;
|
|
3327
|
+
payoutTerms?: Maybe<Scalars['String']['output']>;
|
|
3287
3328
|
sponsor: Sponsor;
|
|
3288
3329
|
status: Scalars['String']['output'];
|
|
3289
3330
|
totalCodes: Scalars['Int']['output'];
|
|
3331
|
+
trackingLinkTemplate?: Maybe<Scalars['String']['output']>;
|
|
3290
3332
|
type: Scalars['String']['output'];
|
|
3291
3333
|
};
|
|
3292
3334
|
export type ProviderConnectionStatus = {
|
|
@@ -14235,6 +14277,9 @@ export type OffersQuery = {
|
|
|
14235
14277
|
disclaimer?: string | null;
|
|
14236
14278
|
genericCode?: string | null;
|
|
14237
14279
|
featured: boolean;
|
|
14280
|
+
commissionRate?: number | null;
|
|
14281
|
+
trackingLinkTemplate?: string | null;
|
|
14282
|
+
payoutTerms?: string | null;
|
|
14238
14283
|
offerImage?: {
|
|
14239
14284
|
_id: string;
|
|
14240
14285
|
name?: string | null;
|
|
@@ -14278,6 +14323,9 @@ export type OffersForAthleteQuery = {
|
|
|
14278
14323
|
disclaimer?: string | null;
|
|
14279
14324
|
genericCode?: string | null;
|
|
14280
14325
|
featured: boolean;
|
|
14326
|
+
commissionRate?: number | null;
|
|
14327
|
+
trackingLinkTemplate?: string | null;
|
|
14328
|
+
payoutTerms?: string | null;
|
|
14281
14329
|
offerImage?: {
|
|
14282
14330
|
_id: string;
|
|
14283
14331
|
name?: string | null;
|
|
@@ -14321,6 +14369,9 @@ export type OfferQuery = {
|
|
|
14321
14369
|
disclaimer?: string | null;
|
|
14322
14370
|
genericCode?: string | null;
|
|
14323
14371
|
featured: boolean;
|
|
14372
|
+
commissionRate?: number | null;
|
|
14373
|
+
trackingLinkTemplate?: string | null;
|
|
14374
|
+
payoutTerms?: string | null;
|
|
14324
14375
|
offerImage?: {
|
|
14325
14376
|
_id: string;
|
|
14326
14377
|
name?: string | null;
|
|
@@ -15832,6 +15883,9 @@ export type OfferBasicFieldsFragment = {
|
|
|
15832
15883
|
status: string;
|
|
15833
15884
|
discountType: string;
|
|
15834
15885
|
discountTypeData: string;
|
|
15886
|
+
commissionRate?: number | null;
|
|
15887
|
+
trackingLinkTemplate?: string | null;
|
|
15888
|
+
payoutTerms?: string | null;
|
|
15835
15889
|
conditions?: Array<string> | null;
|
|
15836
15890
|
dateStart?: string | null;
|
|
15837
15891
|
dateEnd?: string | null;
|
|
@@ -15946,6 +16000,9 @@ export type ClaimOfferMutation = {
|
|
|
15946
16000
|
type: string;
|
|
15947
16001
|
dateEnd?: string | null;
|
|
15948
16002
|
discountTypeData: string;
|
|
16003
|
+
commissionRate?: number | null;
|
|
16004
|
+
trackingLinkTemplate?: string | null;
|
|
16005
|
+
payoutTerms?: string | null;
|
|
15949
16006
|
offerImage?: {
|
|
15950
16007
|
url: string;
|
|
15951
16008
|
} | null;
|
|
@@ -15980,6 +16037,9 @@ export type ApplyToSponsorshipMutation = {
|
|
|
15980
16037
|
type: string;
|
|
15981
16038
|
dateEnd?: string | null;
|
|
15982
16039
|
discountTypeData: string;
|
|
16040
|
+
commissionRate?: number | null;
|
|
16041
|
+
trackingLinkTemplate?: string | null;
|
|
16042
|
+
payoutTerms?: string | null;
|
|
15983
16043
|
offerImage?: {
|
|
15984
16044
|
url: string;
|
|
15985
16045
|
} | null;
|
|
@@ -16016,6 +16076,9 @@ export type DecideSponsorshipApplicationMutation = {
|
|
|
16016
16076
|
type: string;
|
|
16017
16077
|
dateEnd?: string | null;
|
|
16018
16078
|
discountTypeData: string;
|
|
16079
|
+
commissionRate?: number | null;
|
|
16080
|
+
trackingLinkTemplate?: string | null;
|
|
16081
|
+
payoutTerms?: string | null;
|
|
16019
16082
|
offerImage?: {
|
|
16020
16083
|
url: string;
|
|
16021
16084
|
} | null;
|
|
@@ -16073,6 +16136,9 @@ export type GetOffersQuery = {
|
|
|
16073
16136
|
status: string;
|
|
16074
16137
|
discountType: string;
|
|
16075
16138
|
discountTypeData: string;
|
|
16139
|
+
commissionRate?: number | null;
|
|
16140
|
+
trackingLinkTemplate?: string | null;
|
|
16141
|
+
payoutTerms?: string | null;
|
|
16076
16142
|
conditions?: Array<string> | null;
|
|
16077
16143
|
dateStart?: string | null;
|
|
16078
16144
|
dateEnd?: string | null;
|
|
@@ -16117,6 +16183,9 @@ export type GetOffersPaginatedQuery = {
|
|
|
16117
16183
|
status: string;
|
|
16118
16184
|
discountType: string;
|
|
16119
16185
|
discountTypeData: string;
|
|
16186
|
+
commissionRate?: number | null;
|
|
16187
|
+
trackingLinkTemplate?: string | null;
|
|
16188
|
+
payoutTerms?: string | null;
|
|
16120
16189
|
conditions?: Array<string> | null;
|
|
16121
16190
|
dateStart?: string | null;
|
|
16122
16191
|
dateEnd?: string | null;
|
|
@@ -16188,6 +16257,9 @@ export type OffersWithEligibilityQuery = {
|
|
|
16188
16257
|
status: string;
|
|
16189
16258
|
discountType: string;
|
|
16190
16259
|
discountTypeData: string;
|
|
16260
|
+
commissionRate?: number | null;
|
|
16261
|
+
trackingLinkTemplate?: string | null;
|
|
16262
|
+
payoutTerms?: string | null;
|
|
16191
16263
|
conditions?: Array<string> | null;
|
|
16192
16264
|
dateStart?: string | null;
|
|
16193
16265
|
dateEnd?: string | null;
|
|
@@ -16260,6 +16332,9 @@ export type GetOfferByIdQuery = {
|
|
|
16260
16332
|
status: string;
|
|
16261
16333
|
discountType: string;
|
|
16262
16334
|
discountTypeData: string;
|
|
16335
|
+
commissionRate?: number | null;
|
|
16336
|
+
trackingLinkTemplate?: string | null;
|
|
16337
|
+
payoutTerms?: string | null;
|
|
16263
16338
|
conditions?: Array<string> | null;
|
|
16264
16339
|
dateStart?: string | null;
|
|
16265
16340
|
dateEnd?: string | null;
|
|
@@ -16296,6 +16371,9 @@ export type GetOffersForAthleteQuery = {
|
|
|
16296
16371
|
status: string;
|
|
16297
16372
|
discountType: string;
|
|
16298
16373
|
discountTypeData: string;
|
|
16374
|
+
commissionRate?: number | null;
|
|
16375
|
+
trackingLinkTemplate?: string | null;
|
|
16376
|
+
payoutTerms?: string | null;
|
|
16299
16377
|
conditions?: Array<string> | null;
|
|
16300
16378
|
dateStart?: string | null;
|
|
16301
16379
|
dateEnd?: string | null;
|
|
@@ -16337,6 +16415,9 @@ export type GetMyOfferClaimsQuery = {
|
|
|
16337
16415
|
type: string;
|
|
16338
16416
|
dateEnd?: string | null;
|
|
16339
16417
|
discountTypeData: string;
|
|
16418
|
+
commissionRate?: number | null;
|
|
16419
|
+
trackingLinkTemplate?: string | null;
|
|
16420
|
+
payoutTerms?: string | null;
|
|
16340
16421
|
offerImage?: {
|
|
16341
16422
|
url: string;
|
|
16342
16423
|
} | null;
|
|
@@ -884,6 +884,9 @@ exports.OfferBasicFieldsFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
884
884
|
status
|
|
885
885
|
discountType
|
|
886
886
|
discountTypeData
|
|
887
|
+
commissionRate
|
|
888
|
+
trackingLinkTemplate
|
|
889
|
+
payoutTerms
|
|
887
890
|
conditions
|
|
888
891
|
dateStart
|
|
889
892
|
dateEnd
|
|
@@ -4943,6 +4946,9 @@ exports.OffersDocument = (0, graphql_tag_1.default) `
|
|
|
4943
4946
|
disclaimer
|
|
4944
4947
|
genericCode
|
|
4945
4948
|
featured
|
|
4949
|
+
commissionRate
|
|
4950
|
+
trackingLinkTemplate
|
|
4951
|
+
payoutTerms
|
|
4946
4952
|
}
|
|
4947
4953
|
}
|
|
4948
4954
|
`;
|
|
@@ -4985,6 +4991,9 @@ exports.OffersForAthleteDocument = (0, graphql_tag_1.default) `
|
|
|
4985
4991
|
disclaimer
|
|
4986
4992
|
genericCode
|
|
4987
4993
|
featured
|
|
4994
|
+
commissionRate
|
|
4995
|
+
trackingLinkTemplate
|
|
4996
|
+
payoutTerms
|
|
4988
4997
|
}
|
|
4989
4998
|
}
|
|
4990
4999
|
`;
|
|
@@ -5027,6 +5036,9 @@ exports.OfferDocument = (0, graphql_tag_1.default) `
|
|
|
5027
5036
|
disclaimer
|
|
5028
5037
|
genericCode
|
|
5029
5038
|
featured
|
|
5039
|
+
commissionRate
|
|
5040
|
+
trackingLinkTemplate
|
|
5041
|
+
payoutTerms
|
|
5030
5042
|
}
|
|
5031
5043
|
}
|
|
5032
5044
|
`;
|
|
@@ -6325,6 +6337,9 @@ exports.ClaimOfferDocument = (0, graphql_tag_1.default) `
|
|
|
6325
6337
|
type
|
|
6326
6338
|
dateEnd
|
|
6327
6339
|
discountTypeData
|
|
6340
|
+
commissionRate
|
|
6341
|
+
trackingLinkTemplate
|
|
6342
|
+
payoutTerms
|
|
6328
6343
|
offerImage {
|
|
6329
6344
|
url
|
|
6330
6345
|
}
|
|
@@ -6356,6 +6371,9 @@ exports.ApplyToSponsorshipDocument = (0, graphql_tag_1.default) `
|
|
|
6356
6371
|
type
|
|
6357
6372
|
dateEnd
|
|
6358
6373
|
discountTypeData
|
|
6374
|
+
commissionRate
|
|
6375
|
+
trackingLinkTemplate
|
|
6376
|
+
payoutTerms
|
|
6359
6377
|
offerImage {
|
|
6360
6378
|
url
|
|
6361
6379
|
}
|
|
@@ -6390,6 +6408,9 @@ exports.DecideSponsorshipApplicationDocument = (0, graphql_tag_1.default) `
|
|
|
6390
6408
|
type
|
|
6391
6409
|
dateEnd
|
|
6392
6410
|
discountTypeData
|
|
6411
|
+
commissionRate
|
|
6412
|
+
trackingLinkTemplate
|
|
6413
|
+
payoutTerms
|
|
6393
6414
|
offerImage {
|
|
6394
6415
|
url
|
|
6395
6416
|
}
|
|
@@ -6463,6 +6484,9 @@ exports.GetOffersPaginatedDocument = (0, graphql_tag_1.default) `
|
|
|
6463
6484
|
status
|
|
6464
6485
|
discountType
|
|
6465
6486
|
discountTypeData
|
|
6487
|
+
commissionRate
|
|
6488
|
+
trackingLinkTemplate
|
|
6489
|
+
payoutTerms
|
|
6466
6490
|
conditions
|
|
6467
6491
|
dateStart
|
|
6468
6492
|
dateEnd
|
|
@@ -6528,6 +6552,9 @@ exports.OffersWithEligibilityDocument = (0, graphql_tag_1.default) `
|
|
|
6528
6552
|
status
|
|
6529
6553
|
discountType
|
|
6530
6554
|
discountTypeData
|
|
6555
|
+
commissionRate
|
|
6556
|
+
trackingLinkTemplate
|
|
6557
|
+
payoutTerms
|
|
6531
6558
|
conditions
|
|
6532
6559
|
dateStart
|
|
6533
6560
|
dateEnd
|
|
@@ -6594,6 +6621,9 @@ exports.GetOfferByIdDocument = (0, graphql_tag_1.default) `
|
|
|
6594
6621
|
status
|
|
6595
6622
|
discountType
|
|
6596
6623
|
discountTypeData
|
|
6624
|
+
commissionRate
|
|
6625
|
+
trackingLinkTemplate
|
|
6626
|
+
payoutTerms
|
|
6597
6627
|
conditions
|
|
6598
6628
|
dateStart
|
|
6599
6629
|
dateEnd
|
|
@@ -6629,6 +6659,9 @@ exports.GetOffersForAthleteDocument = (0, graphql_tag_1.default) `
|
|
|
6629
6659
|
status
|
|
6630
6660
|
discountType
|
|
6631
6661
|
discountTypeData
|
|
6662
|
+
commissionRate
|
|
6663
|
+
trackingLinkTemplate
|
|
6664
|
+
payoutTerms
|
|
6632
6665
|
conditions
|
|
6633
6666
|
dateStart
|
|
6634
6667
|
dateEnd
|
|
@@ -6668,6 +6701,9 @@ exports.GetMyOfferClaimsDocument = (0, graphql_tag_1.default) `
|
|
|
6668
6701
|
type
|
|
6669
6702
|
dateEnd
|
|
6670
6703
|
discountTypeData
|
|
6704
|
+
commissionRate
|
|
6705
|
+
trackingLinkTemplate
|
|
6706
|
+
payoutTerms
|
|
6671
6707
|
offerImage {
|
|
6672
6708
|
url
|
|
6673
6709
|
}
|