@closerplatform/spinner-openapi 0.12.616 → 0.12.618

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.d.ts CHANGED
@@ -5088,6 +5088,12 @@ export interface OrgConfig {
5088
5088
  * @memberof OrgConfig
5089
5089
  */
5090
5090
  maintenanceWindows: Array<MaintenanceWindow>;
5091
+ /**
5092
+ *
5093
+ * @type {boolean}
5094
+ * @memberof OrgConfig
5095
+ */
5096
+ welcomeMessageEnabled: boolean;
5091
5097
  }
5092
5098
  /**
5093
5099
  *
@@ -14009,10 +14015,11 @@ export declare const TagGroupsApiFetchParamCreator: (configuration?: Configurati
14009
14015
  /**
14010
14016
  *
14011
14017
  * @summary endpoint to retrieve tag groups
14018
+ * @param {boolean} [active]
14012
14019
  * @param {*} [options] Override http request option.
14013
14020
  * @throws {RequiredError}
14014
14021
  */
14015
- getTagGroups(options?: any): FetchArgs;
14022
+ getTagGroups(active?: boolean, options?: any): FetchArgs;
14016
14023
  /**
14017
14024
  *
14018
14025
  * @summary endpoint to update tag group
@@ -14063,10 +14070,11 @@ export declare const TagGroupsApiFp: (configuration?: Configuration) => {
14063
14070
  /**
14064
14071
  *
14065
14072
  * @summary endpoint to retrieve tag groups
14073
+ * @param {boolean} [active]
14066
14074
  * @param {*} [options] Override http request option.
14067
14075
  * @throws {RequiredError}
14068
14076
  */
14069
- getTagGroups(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagGroupDto>>;
14077
+ getTagGroups(active?: boolean, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TagGroupDto>>;
14070
14078
  /**
14071
14079
  *
14072
14080
  * @summary endpoint to update tag group
@@ -14117,10 +14125,11 @@ export declare const TagGroupsApiFactory: (configuration?: Configuration, fetch?
14117
14125
  /**
14118
14126
  *
14119
14127
  * @summary endpoint to retrieve tag groups
14128
+ * @param {boolean} [active]
14120
14129
  * @param {*} [options] Override http request option.
14121
14130
  * @throws {RequiredError}
14122
14131
  */
14123
- getTagGroups(options?: any): Promise<TagGroupDto[]>;
14132
+ getTagGroups(active?: boolean, options?: any): Promise<TagGroupDto[]>;
14124
14133
  /**
14125
14134
  *
14126
14135
  * @summary endpoint to update tag group
@@ -14176,11 +14185,12 @@ export declare class TagGroupsApi extends BaseAPI {
14176
14185
  /**
14177
14186
  *
14178
14187
  * @summary endpoint to retrieve tag groups
14188
+ * @param {boolean} [active]
14179
14189
  * @param {*} [options] Override http request option.
14180
14190
  * @throws {RequiredError}
14181
14191
  * @memberof TagGroupsApi
14182
14192
  */
14183
- getTagGroups(options?: any): Promise<TagGroupDto[]>;
14193
+ getTagGroups(active?: boolean, options?: any): Promise<TagGroupDto[]>;
14184
14194
  /**
14185
14195
  *
14186
14196
  * @summary endpoint to update tag group
package/dist/api.js CHANGED
@@ -15257,10 +15257,11 @@ const TagGroupsApiFetchParamCreator = function (configuration) {
15257
15257
  /**
15258
15258
  *
15259
15259
  * @summary endpoint to retrieve tag groups
15260
+ * @param {boolean} [active]
15260
15261
  * @param {*} [options] Override http request option.
15261
15262
  * @throws {RequiredError}
15262
15263
  */
15263
- getTagGroups(options = {}) {
15264
+ getTagGroups(active, options = {}) {
15264
15265
  const localVarPath = `/tag-groups`;
15265
15266
  const localVarUrlObj = url.parse(localVarPath, true);
15266
15267
  const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
@@ -15273,6 +15274,9 @@ const TagGroupsApiFetchParamCreator = function (configuration) {
15273
15274
  : configuration.apiKey;
15274
15275
  localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
15275
15276
  }
15277
+ if (active !== undefined) {
15278
+ localVarQueryParameter['active'] = active;
15279
+ }
15276
15280
  localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
15277
15281
  // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
15278
15282
  delete localVarUrlObj.search;
@@ -15432,11 +15436,12 @@ const TagGroupsApiFp = function (configuration) {
15432
15436
  /**
15433
15437
  *
15434
15438
  * @summary endpoint to retrieve tag groups
15439
+ * @param {boolean} [active]
15435
15440
  * @param {*} [options] Override http request option.
15436
15441
  * @throws {RequiredError}
15437
15442
  */
15438
- getTagGroups(options) {
15439
- const localVarFetchArgs = (0, exports.TagGroupsApiFetchParamCreator)(configuration).getTagGroups(options);
15443
+ getTagGroups(active, options) {
15444
+ const localVarFetchArgs = (0, exports.TagGroupsApiFetchParamCreator)(configuration).getTagGroups(active, options);
15440
15445
  return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
15441
15446
  return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
15442
15447
  if (response.status >= 200 && response.status < 300) {
@@ -15531,11 +15536,12 @@ const TagGroupsApiFactory = function (configuration, fetch, basePath) {
15531
15536
  /**
15532
15537
  *
15533
15538
  * @summary endpoint to retrieve tag groups
15539
+ * @param {boolean} [active]
15534
15540
  * @param {*} [options] Override http request option.
15535
15541
  * @throws {RequiredError}
15536
15542
  */
15537
- getTagGroups(options) {
15538
- return (0, exports.TagGroupsApiFp)(configuration).getTagGroups(options)(fetch, basePath);
15543
+ getTagGroups(active, options) {
15544
+ return (0, exports.TagGroupsApiFp)(configuration).getTagGroups(active, options)(fetch, basePath);
15539
15545
  },
15540
15546
  /**
15541
15547
  *
@@ -15604,12 +15610,13 @@ class TagGroupsApi extends BaseAPI {
15604
15610
  /**
15605
15611
  *
15606
15612
  * @summary endpoint to retrieve tag groups
15613
+ * @param {boolean} [active]
15607
15614
  * @param {*} [options] Override http request option.
15608
15615
  * @throws {RequiredError}
15609
15616
  * @memberof TagGroupsApi
15610
15617
  */
15611
- getTagGroups(options) {
15612
- return (0, exports.TagGroupsApiFp)(this.configuration).getTagGroups(options)(this.fetch, this.basePath);
15618
+ getTagGroups(active, options) {
15619
+ return (0, exports.TagGroupsApiFp)(this.configuration).getTagGroups(active, options)(this.fetch, this.basePath);
15613
15620
  }
15614
15621
  /**
15615
15622
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@closerplatform/spinner-openapi",
3
- "version": "0.12.616",
3
+ "version": "0.12.618",
4
4
  "description": "swagger client for @closerplatform/spinner-openapi",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [