@ikas/api-client 1.0.74 → 1.0.77
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/api/admin/admin-client.js +14 -29
- package/dist/api/admin/admin-client.js.map +1 -1
- package/dist/api/admin/generated/default-gqls.js +5 -5
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +3149 -3081
- package/dist/api/admin/generated/index.js +113 -113
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +1 -1
- package/dist/api/admin/generated/mutation.js +205 -520
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +1 -1
- package/dist/api/admin/generated/query.js +181 -464
- package/dist/api/admin/generated/query.js.map +1 -1
- package/dist/api/admin/index.js +5 -1
- package/dist/api/admin/index.js.map +1 -1
- package/dist/api/admin/rest.d.ts +2 -2
- package/dist/api/admin/rest.js +17 -57
- package/dist/api/admin/rest.js.map +1 -1
- package/dist/api/base.d.ts +10 -15
- package/dist/api/base.js +65 -143
- package/dist/api/base.js.map +1 -1
- package/dist/api/index.js +5 -1
- package/dist/api/index.js.map +1 -1
- package/dist/api/oauth/index.d.ts +1 -1
- package/dist/api/oauth/index.js +40 -89
- package/dist/api/oauth/index.js.map +1 -1
- package/dist/api/oauth/models.d.ts +7 -8
- package/dist/api/oauth/models.js +2 -3
- package/dist/api/oauth/models.js.map +1 -1
- package/dist/globals/constants.d.ts +1 -1
- package/dist/globals/constants.js +8 -6
- package/dist/globals/constants.js.map +1 -1
- package/dist/globals/index.js +5 -1
- package/dist/globals/index.js.map +1 -1
- package/dist/helpers/auth-helpers.js +7 -9
- package/dist/helpers/auth-helpers.js.map +1 -1
- package/dist/helpers/index.js +5 -1
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/webhook-helpers.js +14 -59
- package/dist/helpers/webhook-helpers.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/models/index.js +5 -1
- package/dist/models/index.js.map +1 -1
- package/dist/models/webhook/index.js +5 -1
- package/dist/models/webhook/index.js.map +1 -1
- package/dist/models/webhook/models.d.ts +2 -2
- package/dist/models/webhook/models.js +1 -1
- package/dist/models/webhook/models.js.map +1 -1
- package/package.json +21 -13
|
@@ -1,35 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
3
|
exports.ikasAdminGraphQLAPIClient = void 0;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
4
|
+
const base_1 = require("../base");
|
|
5
|
+
const query_1 = require("./generated/query");
|
|
6
|
+
const mutation_1 = require("./generated/mutation");
|
|
7
|
+
const rest_1 = require("./rest");
|
|
8
|
+
class ikasAdminGraphQLAPIClient extends base_1.BaseGraphQLAPIClient {
|
|
9
|
+
queries;
|
|
10
|
+
mutations;
|
|
11
|
+
rest;
|
|
12
|
+
constructor(options) {
|
|
13
|
+
super(options);
|
|
14
|
+
this.queries = new query_1.AdminQuery(this);
|
|
15
|
+
this.mutations = new mutation_1.AdminMutation(this);
|
|
16
|
+
this.rest = new rest_1.AdminRestAPI(this);
|
|
31
17
|
}
|
|
32
|
-
|
|
33
|
-
}(base_1.BaseGraphQLAPIClient));
|
|
18
|
+
}
|
|
34
19
|
exports.ikasAdminGraphQLAPIClient = ikasAdminGraphQLAPIClient;
|
|
35
20
|
//# sourceMappingURL=admin-client.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"admin-client.js","sourceRoot":"","sources":["../../../src/api/admin/admin-client.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"admin-client.js","sourceRoot":"","sources":["../../../src/api/admin/admin-client.ts"],"names":[],"mappings":";;;AAAA,kCAA4E;AAC5E,6CAA+C;AAC/C,mDAAqD;AACrD,iCAAsC;AAEtC,MAAa,yBAAqC,SAAQ,2BAA+B;IACvF,OAAO,CAAa;IACpB,SAAS,CAAgB;IACzB,IAAI,CAAe;IAEnB,YAAY,OAA+C;QACzD,KAAK,CAAC,OAAO,CAAC,CAAC;QAEf,IAAI,CAAC,OAAO,GAAG,IAAI,kBAAU,CAAC,IAAI,CAAC,CAAC;QACpC,IAAI,CAAC,SAAS,GAAG,IAAI,wBAAa,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,IAAI,GAAG,IAAI,mBAAY,CAAC,IAAI,CAAC,CAAC;IACrC,CAAC;CACF;AAZD,8DAYC"}
|
|
@@ -19,13 +19,13 @@ exports.QueryDefaultGQLs = {
|
|
|
19
19
|
"listCampaign": "query listCampaign($canCombineWithOtherCampaigns: BooleanFilterInput, $id: StringFilterInput, $includeDeleted: Boolean, $pagination: PaginationInput, $search: String, $sort: String, $type: CampaignTypeEnumFilterInput, $updatedAt: DateFilterInput){ listCampaign(canCombineWithOtherCampaigns: $canCombineWithOtherCampaigns, id: $id, includeDeleted: $includeDeleted, pagination: $pagination, search: $search, sort: $sort, type: $type, updatedAt: $updatedAt) { count data { applicableCustomerGroupIds applicableCustomerIds applicableCustomerSegmentIds applicablePrice applyCampaignToProductPrice buyXThenGetY { buyX { amount applyByQuantity filter { idList type } maxAmount } getY { amount automaticallyAddItemToCart discountRatio discountType filter { idList type } } maxUsagePerOrder } canCombineWithOtherCampaigns couponPrefix couponValidityPeriod createdAt createdFor currencyCodes dateRange { end start } deleted fixedDiscount { amount filters { idList type } isApplyByCartAmount lineItemQuantityRange { max min } priceRange { max min } shouldMatchAllConditions } hasCoupon id includeDiscountedProducts isFreeShipping onlyUseCustomer salesChannelIds tieredDiscount { filters { idList type } isApplyByCartAmount rules { amount lineItemQuantityRange { max min } priceRange { max min } } shouldMatchAllConditions } title translations { locale title } type updatedAt usageCount usageLimit usageLimitPerCustomer version } hasNext limit page } }",
|
|
20
20
|
"listCargoCompany": "query listCargoCompany($id: StringFilterInput, $includeDeleted: Boolean){ listCargoCompany(id: $id, includeDeleted: $includeDeleted) { id name } }",
|
|
21
21
|
"listCategory": "query listCategory($categoryPath: CategoryPathFilterInput, $id: StringFilterInput, $search: String, $updatedAt: DateFilterInput){ listCategory(categoryPath: $categoryPath, id: $id, search: $search, updatedAt: $updatedAt) { categoryPath categoryPathItems { createdAt deleted description id imageId isAutomated metaData { canonicals createdAt deleted description disableIndex id metadataOverrides { description language pageTitle storefrontId storefrontRegionId } pageTitle redirectTo slug targetId targetType translations { description locale pageTitle slug } updatedAt } name translations { description locale name } updatedAt } conditions { conditionType method valueList } createdAt deleted description id imageId isAutomated metaData { canonicals createdAt deleted description disableIndex id metadataOverrides { description language pageTitle storefrontId storefrontRegionId } pageTitle redirectTo slug targetId targetType translations { description locale pageTitle slug } updatedAt } name orderType parentId salesChannelIds salesChannels { id status } shouldMatchAllConditions translations { description locale name } updatedAt } }",
|
|
22
|
-
"listCity": "query listCity($countryId: StringFilterInput, $id: StringFilterInput, $search: String, $stateId: StringFilterInput!, $updatedAt: DateFilterInput){ listCity(countryId: $countryId, id: $id, search: $search, stateId: $stateId, updatedAt: $updatedAt) { cityCode countryId createdAt deleted id latitude longitude name order stateId updatedAt } }",
|
|
23
|
-
"listCountry": "query listCountry($id: StringFilterInput, $iso2: StringFilterInput, $iso3: StringFilterInput, $search: String, $updatedAt: DateFilterInput){ listCountry(id: $id, iso2: $iso2, iso3: $iso3, search: $search, updatedAt: $updatedAt) { capital createdAt currency currencyCode currencySymbol deleted emoji emojiString id iso2 iso3 locationTranslations { de en fr tr } name native phoneCode region subregion updatedAt } }",
|
|
22
|
+
"listCity": "query listCity($countryId: StringFilterInput, $id: StringFilterInput, $includeDeleted: Boolean, $search: String, $stateId: StringFilterInput!, $updatedAt: DateFilterInput){ listCity(countryId: $countryId, id: $id, includeDeleted: $includeDeleted, search: $search, stateId: $stateId, updatedAt: $updatedAt) { cityCode countryId createdAt deleted id latitude longitude name order stateId updatedAt } }",
|
|
23
|
+
"listCountry": "query listCountry($id: StringFilterInput, $includeDeleted: Boolean, $iso2: StringFilterInput, $iso3: StringFilterInput, $locale: String, $search: String, $updatedAt: DateFilterInput){ listCountry(id: $id, includeDeleted: $includeDeleted, iso2: $iso2, iso3: $iso3, locale: $locale, search: $search, updatedAt: $updatedAt) { capital createdAt currency currencyCode currencySymbol deleted emoji emojiString id iso2 iso3 locationTranslations { de en fr tr } name native phoneCode region subregion updatedAt } }",
|
|
24
24
|
"listCoupon": "query listCoupon($campaignId: StringFilterInput, $id: StringFilterInput, $includeDeleted: Boolean, $pagination: PaginationInput, $search: String){ listCoupon(campaignId: $campaignId, id: $id, includeDeleted: $includeDeleted, pagination: $pagination, search: $search) { count data { applicableCustomerId campaignId canCombineWithOtherCampaigns code createdAt dateRange { end start } deleted id updatedAt usageCount usageLimit usageLimitPerCustomer } hasNext limit page } }",
|
|
25
25
|
"listCustomer": "query listCustomer($email: StringFilterInput, $id: StringFilterInput, $merchantId: StringFilterInput, $pagination: PaginationInput, $phone: StringFilterInput, $search: String, $sort: String, $updatedAt: DateFilterInput){ listCustomer(email: $email, id: $id, merchantId: $merchantId, pagination: $pagination, phone: $phone, search: $search, sort: $sort, updatedAt: $updatedAt) { count data { accountStatus accountStatusUpdatedAt addresses { addressLine1 addressLine2 attributes { customerAttributeId customerAttributeOptionId value } city { code id name } company country { code id iso2 iso3 name } createdAt deleted district { code id name } firstName id identityNumber isDefault lastName phone postalCode region { createdAt deleted id name updatedAt } state { code id name } taxNumber taxOffice title updatedAt } attributes { customerAttributeId customerAttributeOptionId value } b2bStatus birthDate createdAt customerGroupIds customerSegmentIds customerSequence deleted email emailVerifiedDate firstName firstOrderDate fullName gender id ip isEmailVerified isPhoneVerified lastName lastOrderDate lastPriceListId lastStorefrontRoutingId note orderCount passwordUpdateDate phone phoneSubscriptionStatus phoneSubscriptionStatusUpdatedAt phoneVerifiedDate preferredLanguage priceListId priceListRules { discountRate filters { type valueList } priceListId shouldMatchAllFilters value valueType } registrationSource smsSubscriptionStatus smsSubscriptionStatusUpdatedAt subscriptionStatus subscriptionStatusUpdatedAt tagIds totalOrderPrice updatedAt userAgent } hasNext limit page } }",
|
|
26
26
|
"listCustomerAttribute": "query listCustomerAttribute($includeDeleted: Boolean){ listCustomerAttribute(includeDeleted: $includeDeleted) { createdAt deleted description id name options { createdAt deleted id name order updatedAt } order routings { storefrontRoutingId } salesChannels { permission registerPageRequirement salesChannelId storefrontId } translations { description locale name options { id name } } type updatedAt } }",
|
|
27
27
|
"listCustomerGroup": "query listCustomerGroup($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput){ listCustomerGroup(id: $id, includeDeleted: $includeDeleted, name: $name, updatedAt: $updatedAt) { conditions { conditionType method valueList } createdAt deleted id isAutomated name priceListId priceListRules { discountRate filters { type valueList } priceListId shouldMatchAllFilters value valueType } shouldMatchAllConditions updatedAt } }",
|
|
28
|
-
"listDistrict": "query listDistrict($cityId: StringFilterInput!, $countryId: StringFilterInput, $id: StringFilterInput, $search: String, $stateId: StringFilterInput, $updatedAt: DateFilterInput){ listDistrict(cityId: $cityId, countryId: $countryId, id: $id, search: $search, stateId: $stateId, updatedAt: $updatedAt) { cityId countryId createdAt deleted id latitude longitude name order stateId updatedAt } }",
|
|
28
|
+
"listDistrict": "query listDistrict($cityId: StringFilterInput!, $countryId: StringFilterInput, $id: StringFilterInput, $includeDeleted: Boolean, $search: String, $stateId: StringFilterInput, $updatedAt: DateFilterInput){ listDistrict(cityId: $cityId, countryId: $countryId, id: $id, includeDeleted: $includeDeleted, search: $search, stateId: $stateId, updatedAt: $updatedAt) { cityId countryId createdAt deleted id latitude longitude name order stateId updatedAt } }",
|
|
29
29
|
"listGlobalTaxSettings": "query listGlobalTaxSettings($id: StringFilterInput, $includeDeleted: Boolean, $storefrontId: StringFilterInput){ listGlobalTaxSettings(id: $id, includeDeleted: $includeDeleted, storefrontId: $storefrontId) { createdAt deleted id isTaxExcludedOnPrices isTaxExcludedOnShippingPrices storefrontId updatedAt } }",
|
|
30
30
|
"listIkasWallet": "query listIkasWallet($id: StringFilterInput){ listIkasWallet(id: $id) { createdAt deleted hasVatExemption id lastPayoutDate minimumBalance nextEstimatedPayoutDate paymentGatewayId paymentLimits { amount currencyCode } paymentStatus payoutStatus payoutTerm refillBalance topUpSettings { alternativeSavedCardId amount savedCardId status } updatedAt } }",
|
|
31
31
|
"listIkasWalletTransaction": "query listIkasWalletTransaction($pagination: PaginationInput, $status: IkasWalletTransactionStatusEnumFilter, $transactionId: StringFilterInput){ listIkasWalletTransaction(pagination: $pagination, status: $status, transactionId: $transactionId) { count data { amount amountWithoutTax commission { amount rate } createdAt currencyCode deleted error { code message } expectedPayoutDate id metadata orderDetail { orderId orderNumber orderedDate } paymentGatewayCode paymentMethodDetail { bankName binNumber cardAssociation cardFamily cardType installment { installmentCount installmentPrice originalRate rate totalPrice } lastFourDigits savedCardId threeDSecure } payoutAmount payoutDate payoutId payoutStatus payoutSummary { commissionAmount gatewayReferenceId netSalesTransactionAmount period { endDate startDate } totalRefundCount totalSaleCount totalShippingTransactionAmount totalSubscriptionTransactionAmount transferInformation { holderName iban } withholdingAmount } source sourceMetadata { authorizedAppId firstName id imageId lastName } sourceTransactionId status transactionCategory transactionId type updatedAt withholding { amount rate } } hasNext limit page } }",
|
|
@@ -48,14 +48,14 @@ exports.QueryDefaultGQLs = {
|
|
|
48
48
|
"listProductVolumeDiscount": "query listProductVolumeDiscount($id: StringFilterInput){ listProductVolumeDiscount(id: $id) { createdAt deleted id name rules { discountRatio lineItemQuantityRange { max min } } scope updatedAt } }",
|
|
49
49
|
"listSalesChannel": "query listSalesChannel($id: StringFilterInput){ listSalesChannel(id: $id) { createdAt deleted id name paymentGateways { id order } priceListId stockLocations { id order } type updatedAt } }",
|
|
50
50
|
"listShippingSettings": "query listShippingSettings{ listShippingSettings { createdAt deleted id isPassive localDeliverySettings { activeDays { activeLocalDeliveryHours { endTime startTime } day estimatedDeliveryTime { type value } } activeLocalDeliveryHours { endTime startTime } timezone } order salesChannelId shippingZones { countryId postalCodes states { cities { districts { id regions { createdAt deleted id name updatedAt } } id } id postalCodes } } stockLocations { order stockLocationId } translations { locale zoneRate { id rateName } } type updatedAt zoneName zoneRate { condition { maxAmount minAmount type } createdAt currency currencyCode currencySymbol deleted id price priceListId rateName updatedAt } } }",
|
|
51
|
-
"listState": "query listState($countryId: StringFilterInput!, $id: StringFilterInput, $search: String, $updatedAt: DateFilterInput){ listState(countryId: $countryId, id: $id, search: $search, updatedAt: $updatedAt) { countryId createdAt deleted id locationTranslations { de en fr tr } name native stateCode updatedAt } }",
|
|
51
|
+
"listState": "query listState($countryId: StringFilterInput!, $id: StringFilterInput, $includeDeleted: Boolean, $locale: String, $search: String, $updatedAt: DateFilterInput){ listState(countryId: $countryId, id: $id, includeDeleted: $includeDeleted, locale: $locale, search: $search, updatedAt: $updatedAt) { countryId createdAt deleted id locationTranslations { de en fr tr } name native stateCode updatedAt } }",
|
|
52
52
|
"listStockLocation": "query listStockLocation($id: StringFilterInput, $name: StringFilterInput, $updatedAt: DateFilterInput){ listStockLocation(id: $id, name: $name, updatedAt: $updatedAt) { address { address city { code id name } country { code id iso2 iso3 name } district { code id name } phone postalCode state { code id name } } createdAt deleted deliveryTime description id isRemindOutOfStockEnabled name outOfStockMailList translations { description locale } type updatedAt } }",
|
|
53
53
|
"listStorefront": "query listStorefront($id: StringFilterInput, $salesChannelId: StringFilterInput){ listStorefront(id: $id, salesChannelId: $salesChannelId) { createdAt deleted id name routings { countryCodes createdAt currencyCode currencySymbol deleted domain dynamicCurrencySettings { roundingFormat targetCurrencyCode targetCurrencySymbol } id locale path priceListId updatedAt } salesChannelId updatedAt } }",
|
|
54
54
|
"listStorefrontJSScript": "query listStorefrontJSScript($storefrontId: String){ listStorefrontJSScript(storefrontId: $storefrontId) { authorizedAppId contentType createdAt deleted fileName id isActive isHighPriority name order scriptContent storeAppId storefrontId updatedAt } }",
|
|
55
55
|
"listStorefrontPolicy": "query listStorefrontPolicy($id: StringFilterInput, $includeDeleted: Boolean, $language: StringFilterInput, $name: StringFilterInput, $updatedAt: DateFilterInput){ listStorefrontPolicy(id: $id, includeDeleted: $includeDeleted, language: $language, name: $name, updatedAt: $updatedAt) { createdAt currentVersionId deleted id locale name sendEmail slug storefrontId storefrontRoutings { storefrontId storefrontRoutingId } type updatedAt } }",
|
|
56
56
|
"listTaxSettings": "query listTaxSettings($countryId: StringFilterInput, $id: StringFilterInput, $includeDeleted: Boolean){ listTaxSettings(countryId: $countryId, id: $id, includeDeleted: $includeDeleted) { countryId createdAt deleted giftPackageTaxRates { stateId taxRate } id productOverrides { productTagIds stateId taxRate } rates { stateId taxRate } shippingTaxRates { stateId taxRate } taxRate updatedAt } }",
|
|
57
57
|
"listTerminal": "query listTerminal($branchId: StringFilterInput, $id: StringFilterInput, $includeDeleted: Boolean, $updatedAt: DateFilterInput){ listTerminal(branchId: $branchId, id: $id, includeDeleted: $includeDeleted, updatedAt: $updatedAt) { branchId createdAt deleted id name updatedAt } }",
|
|
58
|
-
"listTown": "query listTown($districtId: StringFilterInput!, $id: StringFilterInput, $search: String, $updatedAt: DateFilterInput){ listTown(districtId: $districtId, id: $id, search: $search, updatedAt: $updatedAt) { createdAt deleted districtId id name order updatedAt } }",
|
|
58
|
+
"listTown": "query listTown($districtId: StringFilterInput!, $id: StringFilterInput, $includeDeleted: Boolean, $search: String, $updatedAt: DateFilterInput){ listTown(districtId: $districtId, id: $id, includeDeleted: $includeDeleted, search: $search, updatedAt: $updatedAt) { createdAt deleted districtId id name order updatedAt } }",
|
|
59
59
|
"listVariantType": "query listVariantType($id: StringFilterInput, $name: StringFilterInput, $updatedAt: DateFilterInput){ listVariantType(id: $id, name: $name, updatedAt: $updatedAt) { createdAt deleted id name selectionType translations { locale name values { id name } } updatedAt values { colorCode createdAt deleted id name thumbnailImageId updatedAt } } }",
|
|
60
60
|
"listVendor": "query listVendor($id: StringFilterInput, $includeDeleted: Boolean, $merchantId: StringFilterInput, $name: StringFilterInput, $updatedAt: DateFilterInput){ listVendor(id: $id, includeDeleted: $includeDeleted, merchantId: $merchantId, name: $name, updatedAt: $updatedAt) { address company createdAt deleted email id name phone staffName status taxNumber taxOffice updatedAt } }",
|
|
61
61
|
"listWebhook": "query listWebhook{ listWebhook { createdAt deleted endpoint id scope updatedAt } }",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default-gqls.js","sourceRoot":"","sources":["../../../../src/api/admin/generated/default-gqls.ts"],"names":[],"mappings":";;;AAAa,QAAA,gBAAgB,GAAG;IAC9B,kBAAkB,EAAE,gKAAgK;IACpL,sBAAsB,EAAE,wJAAwJ;IAChL,0BAA0B,EAAE,qpBAAqpB;IACjrB,mBAAmB,EAAE,6HAA6H;IAClJ,kBAAkB,EAAE,8LAA8L;IAClN,sBAAsB,EAAE,qFAAqF;IAC7G,sBAAsB,EAAE,4EAA4E;IACpG,aAAa,EAAE,6kBAA6kB;IAC5lB,oBAAoB,EAAE,+fAA+f;IACrhB,iBAAiB,EAAE,4JAA4J;IAC/K,kBAAkB,EAAE,6CAA6C;IACjE,mBAAmB,EAAE,mGAAmG;IACxH,wBAAwB,EAAE,8rLAA8rL;IACxtL,YAAY,EAAE,+nBAA+nB;IAC7oB,cAAc,EAAE,k6CAAk6C;IACl7C,kBAAkB,EAAE,oJAAoJ;IACxK,cAAc,EAAE,mnCAAmnC;IACnoC,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"default-gqls.js","sourceRoot":"","sources":["../../../../src/api/admin/generated/default-gqls.ts"],"names":[],"mappings":"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"}
|