@vertikalx/vtx-backend-client 3.1.18-dev.3 → 3.1.20-dev.1
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 +4 -0
- package/dist/src/client/types.d.ts +4 -0
- package/dist/src/client/types.js +12 -0
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +8 -0
- package/dist/src/generated/graphql.js +8 -8
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -7565,12 +7565,14 @@ export interface MutationGenqlSelection {
|
|
|
7565
7565
|
createBrand?: (BrandGenqlSelection & {
|
|
7566
7566
|
__args: {
|
|
7567
7567
|
input: CreateBrandDto;
|
|
7568
|
+
tenantId?: (Scalars['String'] | null);
|
|
7568
7569
|
};
|
|
7569
7570
|
});
|
|
7570
7571
|
updateBrand?: (BrandGenqlSelection & {
|
|
7571
7572
|
__args: {
|
|
7572
7573
|
id: Scalars['String'];
|
|
7573
7574
|
input: CreateBrandDto;
|
|
7575
|
+
tenantId?: (Scalars['String'] | null);
|
|
7574
7576
|
};
|
|
7575
7577
|
});
|
|
7576
7578
|
deleteBrand?: {
|
|
@@ -7968,12 +7970,14 @@ export interface MutationGenqlSelection {
|
|
|
7968
7970
|
createOffer?: (OfferGenqlSelection & {
|
|
7969
7971
|
__args: {
|
|
7970
7972
|
input: CreateOfferDto;
|
|
7973
|
+
tenantId?: (Scalars['String'] | null);
|
|
7971
7974
|
};
|
|
7972
7975
|
});
|
|
7973
7976
|
updateOffer?: (OfferGenqlSelection & {
|
|
7974
7977
|
__args: {
|
|
7975
7978
|
id: Scalars['String'];
|
|
7976
7979
|
input: CreateOfferDto;
|
|
7980
|
+
tenantId?: (Scalars['String'] | null);
|
|
7977
7981
|
};
|
|
7978
7982
|
});
|
|
7979
7983
|
deleteOffer?: {
|
|
@@ -4387,10 +4387,12 @@ declare const _default: {
|
|
|
4387
4387
|
})[];
|
|
4388
4388
|
createBrand: (number | {
|
|
4389
4389
|
input: (string | number)[];
|
|
4390
|
+
tenantId: number[];
|
|
4390
4391
|
})[];
|
|
4391
4392
|
updateBrand: (number | {
|
|
4392
4393
|
id: (string | number)[];
|
|
4393
4394
|
input: (string | number)[];
|
|
4395
|
+
tenantId: number[];
|
|
4394
4396
|
})[];
|
|
4395
4397
|
deleteBrand: (number | {
|
|
4396
4398
|
id: (string | number)[];
|
|
@@ -4634,10 +4636,12 @@ declare const _default: {
|
|
|
4634
4636
|
})[];
|
|
4635
4637
|
createOffer: (number | {
|
|
4636
4638
|
input: (string | number)[];
|
|
4639
|
+
tenantId: number[];
|
|
4637
4640
|
})[];
|
|
4638
4641
|
updateOffer: (number | {
|
|
4639
4642
|
id: (string | number)[];
|
|
4640
4643
|
input: (string | number)[];
|
|
4644
|
+
tenantId: number[];
|
|
4641
4645
|
})[];
|
|
4642
4646
|
deleteOffer: (number | {
|
|
4643
4647
|
id: (string | number)[];
|
package/dist/src/client/types.js
CHANGED
|
@@ -11303,6 +11303,9 @@ exports.default = {
|
|
|
11303
11303
|
"input": [
|
|
11304
11304
|
362,
|
|
11305
11305
|
"CreateBrandDto!"
|
|
11306
|
+
],
|
|
11307
|
+
"tenantId": [
|
|
11308
|
+
1
|
|
11306
11309
|
]
|
|
11307
11310
|
}
|
|
11308
11311
|
],
|
|
@@ -11316,6 +11319,9 @@ exports.default = {
|
|
|
11316
11319
|
"input": [
|
|
11317
11320
|
362,
|
|
11318
11321
|
"CreateBrandDto!"
|
|
11322
|
+
],
|
|
11323
|
+
"tenantId": [
|
|
11324
|
+
1
|
|
11319
11325
|
]
|
|
11320
11326
|
}
|
|
11321
11327
|
],
|
|
@@ -12049,6 +12055,9 @@ exports.default = {
|
|
|
12049
12055
|
"input": [
|
|
12050
12056
|
371,
|
|
12051
12057
|
"CreateOfferDto!"
|
|
12058
|
+
],
|
|
12059
|
+
"tenantId": [
|
|
12060
|
+
1
|
|
12052
12061
|
]
|
|
12053
12062
|
}
|
|
12054
12063
|
],
|
|
@@ -12062,6 +12071,9 @@ exports.default = {
|
|
|
12062
12071
|
"input": [
|
|
12063
12072
|
371,
|
|
12064
12073
|
"CreateOfferDto!"
|
|
12074
|
+
],
|
|
12075
|
+
"tenantId": [
|
|
12076
|
+
1
|
|
12065
12077
|
]
|
|
12066
12078
|
}
|
|
12067
12079
|
],
|