@ikas/api-client 0.0.1-canary.6 → 0.0.1-canary.7
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.
|
@@ -870,6 +870,7 @@ export declare type Mutation = {
|
|
|
870
870
|
deleteProductBrandList: Scalars['Boolean'];
|
|
871
871
|
deleteProductList: Scalars['Boolean'];
|
|
872
872
|
deleteProductTagList: Scalars['Boolean'];
|
|
873
|
+
/** Using this api, you can delete javascript script from a the storefront. */
|
|
873
874
|
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
874
875
|
deleteVariantTypeList: Scalars['Boolean'];
|
|
875
876
|
/** Use this mutation to delete webhooks by giving `scope` list. */
|
|
@@ -884,6 +885,7 @@ export declare type Mutation = {
|
|
|
884
885
|
saveProductTag: ProductTag;
|
|
885
886
|
/** Using this api you can update the sales channel name, priceList Id and stockLocations properties. */
|
|
886
887
|
saveSalesChannel?: Maybe<SalesChannel>;
|
|
888
|
+
/** Using this api, you can save javascript script to a the storefront. */
|
|
887
889
|
saveStorefrontJSScript: StorefrontJSScript;
|
|
888
890
|
saveVariantType: VariantType;
|
|
889
891
|
/** Use this mutation to save webhooks by using multiple `scope` variables. After saving a webhook, **ikas** will start to push new webhooks to given url `endpoint`. If **endpoint** is unreachable or returns an error code other than `HTTP 200` **ikas** will try to push webhook for 3 times then stops sending webhook. */
|
|
@@ -984,11 +986,17 @@ export declare type MutationupdateProductSalesChannelStatusArgs = {
|
|
|
984
986
|
input: Array<UpdateProductSalesChannelStatusInput>;
|
|
985
987
|
};
|
|
986
988
|
export declare type NumberFilterInput = {
|
|
989
|
+
/** ```equal```. The filter used for equality. */
|
|
987
990
|
eq?: InputMaybe<Scalars['Float']>;
|
|
991
|
+
/** ```greater than``` selects the documents where the value of the ```input``` is greater than to (i.e. ```>```) a specified value (e.g. value.) */
|
|
988
992
|
gt?: InputMaybe<Scalars['Float']>;
|
|
993
|
+
/** ```greater than or equals``` selects the documents where the value of the ```input``` is greater than or equal to (i.e. ```>=```) a specified value (e.g. value.) */
|
|
989
994
|
gte?: InputMaybe<Scalars['Float']>;
|
|
995
|
+
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
990
996
|
in?: InputMaybe<Array<Scalars['Float']>>;
|
|
997
|
+
/** ```less than``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<```) a specified value (e.g. value.) */
|
|
991
998
|
lt?: InputMaybe<Scalars['Float']>;
|
|
999
|
+
/** ```less than or equals``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<=```) a specified value (e.g. value.) */
|
|
992
1000
|
lte?: InputMaybe<Scalars['Float']>;
|
|
993
1001
|
};
|
|
994
1002
|
export declare type Order = {
|
|
@@ -1360,10 +1368,14 @@ export declare enum OrderPackageStatusEnum {
|
|
|
1360
1368
|
}
|
|
1361
1369
|
export declare type OrderPaginationResponse = {
|
|
1362
1370
|
__typename?: 'OrderPaginationResponse';
|
|
1371
|
+
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
1363
1372
|
count: Scalars['Int'];
|
|
1364
1373
|
data: Array<Order>;
|
|
1374
|
+
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1365
1375
|
hasNext: Scalars['Boolean'];
|
|
1376
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1366
1377
|
limit: Scalars['Int'];
|
|
1378
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1367
1379
|
page: Scalars['Int'];
|
|
1368
1380
|
};
|
|
1369
1381
|
export declare type OrderPaymentMethod = {
|
|
@@ -1706,9 +1718,9 @@ export declare type ProductPaginationResponse = {
|
|
|
1706
1718
|
data: Array<Product>;
|
|
1707
1719
|
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1708
1720
|
hasNext: Scalars['Boolean'];
|
|
1709
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each
|
|
1721
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1710
1722
|
limit: Scalars['Int'];
|
|
1711
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90
|
|
1723
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1712
1724
|
page: Scalars['Int'];
|
|
1713
1725
|
};
|
|
1714
1726
|
export declare type ProductPrice = {
|
|
@@ -1762,9 +1774,9 @@ export declare type ProductStockLocationPaginationResponse = {
|
|
|
1762
1774
|
data: Array<ProductStockLocation>;
|
|
1763
1775
|
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1764
1776
|
hasNext: Scalars['Boolean'];
|
|
1765
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each
|
|
1777
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1766
1778
|
limit: Scalars['Int'];
|
|
1767
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90
|
|
1779
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1768
1780
|
page: Scalars['Int'];
|
|
1769
1781
|
};
|
|
1770
1782
|
export declare type ProductTag = {
|
|
@@ -1833,11 +1845,6 @@ export declare type Query = {
|
|
|
1833
1845
|
getMerchantLicence: MerchantLicence;
|
|
1834
1846
|
/** Using this api, you can view your sales channel. */
|
|
1835
1847
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
1836
|
-
/**
|
|
1837
|
-
* undefined
|
|
1838
|
-
*
|
|
1839
|
-
* Search applies to following fields: `name`
|
|
1840
|
-
*/
|
|
1841
1848
|
listCategory: Array<Category>;
|
|
1842
1849
|
listCity: Array<City>;
|
|
1843
1850
|
listCountry: Array<Country>;
|
|
@@ -1846,26 +1853,18 @@ export declare type Query = {
|
|
|
1846
1853
|
listMerchantAppPayment: MerchantAppPaymentPaginationResponse;
|
|
1847
1854
|
listOrder: OrderPaginationResponse;
|
|
1848
1855
|
listPriceList: Array<PriceList>;
|
|
1849
|
-
/** undefined */
|
|
1850
1856
|
listProduct: ProductPaginationResponse;
|
|
1851
|
-
/** undefined */
|
|
1852
1857
|
listProductAttribute: Array<ProductAttribute>;
|
|
1853
|
-
/**
|
|
1854
|
-
* undefined
|
|
1855
|
-
*
|
|
1856
|
-
* Search applies to following fields: `name`
|
|
1857
|
-
*/
|
|
1858
1858
|
listProductBrand: Array<ProductBrand>;
|
|
1859
1859
|
listProductStockLocation: ProductStockLocationPaginationResponse;
|
|
1860
|
-
/** undefined */
|
|
1861
1860
|
listProductTag: Array<ProductTag>;
|
|
1862
1861
|
listSalesChannel: Array<SalesChannel>;
|
|
1863
1862
|
listState: Array<State>;
|
|
1864
1863
|
listStockLocation: Array<StockLocation>;
|
|
1865
1864
|
listStorefront: Array<Storefront>;
|
|
1865
|
+
/** Use this query to list storefront javascript scripts by supplying the `storefrontId` input. */
|
|
1866
1866
|
listStorefrontJSScript: Array<StorefrontJSScript>;
|
|
1867
1867
|
listTown: Array<Town>;
|
|
1868
|
-
/** undefined */
|
|
1869
1868
|
listVariantType: Array<VariantType>;
|
|
1870
1869
|
/** Use this query to list active webhooks of your application. */
|
|
1871
1870
|
listWebhook: Array<Webhook>;
|
|
@@ -2146,19 +2145,26 @@ export declare type Storefront = {
|
|
|
2146
2145
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2147
2146
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
2148
2147
|
id: Scalars['ID'];
|
|
2148
|
+
/** The storefront's name. */
|
|
2149
2149
|
name: Scalars['String'];
|
|
2150
2150
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2151
2151
|
};
|
|
2152
2152
|
export declare type StorefrontJSScript = {
|
|
2153
2153
|
__typename?: 'StorefrontJSScript';
|
|
2154
|
+
/** The id of the logged in application. */
|
|
2154
2155
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
2155
2156
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2156
2157
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
2157
2158
|
id: Scalars['ID'];
|
|
2159
|
+
/** Shows the availability status of the storefront. */
|
|
2158
2160
|
isActive: Scalars['Boolean'];
|
|
2161
|
+
/** The storefront javascript script's name. */
|
|
2159
2162
|
name: Scalars['String'];
|
|
2163
|
+
/** The storefront javascript script's content. */
|
|
2160
2164
|
scriptContent: Scalars['String'];
|
|
2165
|
+
/** The store app's id. */
|
|
2161
2166
|
storeAppId?: Maybe<Scalars['String']>;
|
|
2167
|
+
/** The storefront's id. */
|
|
2162
2168
|
storefrontId: Scalars['String'];
|
|
2163
2169
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2164
2170
|
};
|
|
@@ -2194,13 +2200,9 @@ export declare enum SubscriptionPriceCurrencyEnum {
|
|
|
2194
2200
|
USD = "USD"
|
|
2195
2201
|
}
|
|
2196
2202
|
export declare type TimelineInput = {
|
|
2197
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2198
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2199
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2200
2203
|
message: Scalars['String'];
|
|
2201
2204
|
sourceId: Scalars['String'];
|
|
2202
2205
|
sourceType: SourceTypeEnum;
|
|
2203
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2204
2206
|
};
|
|
2205
2207
|
export declare type Town = {
|
|
2206
2208
|
__typename?: 'Town';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/api/admin/generated/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/api/admin/generated/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -943,6 +943,7 @@ export type Mutation = {
|
|
|
943
943
|
deleteProductBrandList: Scalars['Boolean'];
|
|
944
944
|
deleteProductList: Scalars['Boolean'];
|
|
945
945
|
deleteProductTagList: Scalars['Boolean'];
|
|
946
|
+
/** Using this api, you can delete javascript script from a the storefront. */
|
|
946
947
|
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
947
948
|
deleteVariantTypeList: Scalars['Boolean'];
|
|
948
949
|
/** Use this mutation to delete webhooks by giving `scope` list. */
|
|
@@ -957,6 +958,7 @@ export type Mutation = {
|
|
|
957
958
|
saveProductTag: ProductTag;
|
|
958
959
|
/** Using this api you can update the sales channel name, priceList Id and stockLocations properties. */
|
|
959
960
|
saveSalesChannel?: Maybe<SalesChannel>;
|
|
961
|
+
/** Using this api, you can save javascript script to a the storefront. */
|
|
960
962
|
saveStorefrontJSScript: StorefrontJSScript;
|
|
961
963
|
saveVariantType: VariantType;
|
|
962
964
|
/** Use this mutation to save webhooks by using multiple `scope` variables. After saving a webhook, **ikas** will start to push new webhooks to given url `endpoint`. If **endpoint** is unreachable or returns an error code other than `HTTP 200` **ikas** will try to push webhook for 3 times then stops sending webhook. */
|
|
@@ -1118,11 +1120,17 @@ export type MutationupdateProductSalesChannelStatusArgs = {
|
|
|
1118
1120
|
};
|
|
1119
1121
|
|
|
1120
1122
|
export type NumberFilterInput = {
|
|
1123
|
+
/** ```equal```. The filter used for equality. */
|
|
1121
1124
|
eq?: InputMaybe<Scalars['Float']>;
|
|
1125
|
+
/** ```greater than``` selects the documents where the value of the ```input``` is greater than to (i.e. ```>```) a specified value (e.g. value.) */
|
|
1122
1126
|
gt?: InputMaybe<Scalars['Float']>;
|
|
1127
|
+
/** ```greater than or equals``` selects the documents where the value of the ```input``` is greater than or equal to (i.e. ```>=```) a specified value (e.g. value.) */
|
|
1123
1128
|
gte?: InputMaybe<Scalars['Float']>;
|
|
1129
|
+
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
1124
1130
|
in?: InputMaybe<Array<Scalars['Float']>>;
|
|
1131
|
+
/** ```less than``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<```) a specified value (e.g. value.) */
|
|
1125
1132
|
lt?: InputMaybe<Scalars['Float']>;
|
|
1133
|
+
/** ```less than or equals``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<=```) a specified value (e.g. value.) */
|
|
1126
1134
|
lte?: InputMaybe<Scalars['Float']>;
|
|
1127
1135
|
};
|
|
1128
1136
|
|
|
@@ -1532,10 +1540,14 @@ export enum OrderPackageStatusEnum {
|
|
|
1532
1540
|
|
|
1533
1541
|
export type OrderPaginationResponse = {
|
|
1534
1542
|
__typename?: 'OrderPaginationResponse';
|
|
1543
|
+
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
1535
1544
|
count: Scalars['Int'];
|
|
1536
1545
|
data: Array<Order>;
|
|
1546
|
+
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1537
1547
|
hasNext: Scalars['Boolean'];
|
|
1548
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1538
1549
|
limit: Scalars['Int'];
|
|
1550
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1539
1551
|
page: Scalars['Int'];
|
|
1540
1552
|
};
|
|
1541
1553
|
|
|
@@ -1921,9 +1933,9 @@ export type ProductPaginationResponse = {
|
|
|
1921
1933
|
data: Array<Product>;
|
|
1922
1934
|
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1923
1935
|
hasNext: Scalars['Boolean'];
|
|
1924
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each
|
|
1936
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1925
1937
|
limit: Scalars['Int'];
|
|
1926
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90
|
|
1938
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1927
1939
|
page: Scalars['Int'];
|
|
1928
1940
|
};
|
|
1929
1941
|
|
|
@@ -1983,9 +1995,9 @@ export type ProductStockLocationPaginationResponse = {
|
|
|
1983
1995
|
data: Array<ProductStockLocation>;
|
|
1984
1996
|
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1985
1997
|
hasNext: Scalars['Boolean'];
|
|
1986
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each
|
|
1998
|
+
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1987
1999
|
limit: Scalars['Int'];
|
|
1988
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90
|
|
2000
|
+
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1989
2001
|
page: Scalars['Int'];
|
|
1990
2002
|
};
|
|
1991
2003
|
|
|
@@ -2064,11 +2076,6 @@ export type Query = {
|
|
|
2064
2076
|
getMerchantLicence: MerchantLicence;
|
|
2065
2077
|
/** Using this api, you can view your sales channel. */
|
|
2066
2078
|
getSalesChannel?: Maybe<SalesChannel>;
|
|
2067
|
-
/**
|
|
2068
|
-
* undefined
|
|
2069
|
-
*
|
|
2070
|
-
* Search applies to following fields: `name`
|
|
2071
|
-
*/
|
|
2072
2079
|
listCategory: Array<Category>;
|
|
2073
2080
|
listCity: Array<City>;
|
|
2074
2081
|
listCountry: Array<Country>;
|
|
@@ -2077,26 +2084,18 @@ export type Query = {
|
|
|
2077
2084
|
listMerchantAppPayment: MerchantAppPaymentPaginationResponse;
|
|
2078
2085
|
listOrder: OrderPaginationResponse;
|
|
2079
2086
|
listPriceList: Array<PriceList>;
|
|
2080
|
-
/** undefined */
|
|
2081
2087
|
listProduct: ProductPaginationResponse;
|
|
2082
|
-
/** undefined */
|
|
2083
2088
|
listProductAttribute: Array<ProductAttribute>;
|
|
2084
|
-
/**
|
|
2085
|
-
* undefined
|
|
2086
|
-
*
|
|
2087
|
-
* Search applies to following fields: `name`
|
|
2088
|
-
*/
|
|
2089
2089
|
listProductBrand: Array<ProductBrand>;
|
|
2090
2090
|
listProductStockLocation: ProductStockLocationPaginationResponse;
|
|
2091
|
-
/** undefined */
|
|
2092
2091
|
listProductTag: Array<ProductTag>;
|
|
2093
2092
|
listSalesChannel: Array<SalesChannel>;
|
|
2094
2093
|
listState: Array<State>;
|
|
2095
2094
|
listStockLocation: Array<StockLocation>;
|
|
2096
2095
|
listStorefront: Array<Storefront>;
|
|
2096
|
+
/** Use this query to list storefront javascript scripts by supplying the `storefrontId` input. */
|
|
2097
2097
|
listStorefrontJSScript: Array<StorefrontJSScript>;
|
|
2098
2098
|
listTown: Array<Town>;
|
|
2099
|
-
/** undefined */
|
|
2100
2099
|
listVariantType: Array<VariantType>;
|
|
2101
2100
|
/** Use this query to list active webhooks of your application. */
|
|
2102
2101
|
listWebhook: Array<Webhook>;
|
|
@@ -2440,20 +2439,27 @@ export type Storefront = {
|
|
|
2440
2439
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2441
2440
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
2442
2441
|
id: Scalars['ID'];
|
|
2442
|
+
/** The storefront's name. */
|
|
2443
2443
|
name: Scalars['String'];
|
|
2444
2444
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2445
2445
|
};
|
|
2446
2446
|
|
|
2447
2447
|
export type StorefrontJSScript = {
|
|
2448
2448
|
__typename?: 'StorefrontJSScript';
|
|
2449
|
+
/** The id of the logged in application. */
|
|
2449
2450
|
authorizedAppId?: Maybe<Scalars['String']>;
|
|
2450
2451
|
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2451
2452
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
2452
2453
|
id: Scalars['ID'];
|
|
2454
|
+
/** Shows the availability status of the storefront. */
|
|
2453
2455
|
isActive: Scalars['Boolean'];
|
|
2456
|
+
/** The storefront javascript script's name. */
|
|
2454
2457
|
name: Scalars['String'];
|
|
2458
|
+
/** The storefront javascript script's content. */
|
|
2455
2459
|
scriptContent: Scalars['String'];
|
|
2460
|
+
/** The store app's id. */
|
|
2456
2461
|
storeAppId?: Maybe<Scalars['String']>;
|
|
2462
|
+
/** The storefront's id. */
|
|
2457
2463
|
storefrontId: Scalars['String'];
|
|
2458
2464
|
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2459
2465
|
};
|
|
@@ -2495,13 +2501,9 @@ export enum SubscriptionPriceCurrencyEnum {
|
|
|
2495
2501
|
}
|
|
2496
2502
|
|
|
2497
2503
|
export type TimelineInput = {
|
|
2498
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2499
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2500
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2501
2504
|
message: Scalars['String'];
|
|
2502
2505
|
sourceId: Scalars['String'];
|
|
2503
2506
|
sourceType: SourceTypeEnum;
|
|
2504
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2505
2507
|
};
|
|
2506
2508
|
|
|
2507
2509
|
export type Town = {
|