Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
* Use `gdbots/schemas` v3.0.1
  • Loading branch information
gdbrown authored Dec 24, 2021
1 parent a41a4dd commit 4549074
Show file tree
Hide file tree
Showing 50 changed files with 1,624 additions and 1,265 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.13.1
v14.13.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG


## v3.0.1
* Use `gdbots/schemas` v3.0.1


## v3.0.0
* Use `gdbots/schemas` v3.0.0
* __Add Schemas:__
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
Gdbots Acme Schemas
========

[![Build Status](https://api.travis-ci.org/gdbots/acme-schemas.svg)](https://travis-ci.org/gdbots/acme-schemas)

Sample schemas for common __gdbots__ services. [Browse the json schemas.](http://acme-schemas.gdbots.io/)

> This repository is primarily for unit testing and examples.
33 changes: 1 addition & 32 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,6 @@ const presets = [];
const plugins = [];

switch (env) {
case 'cjs':
presets.push([
'@babel/preset-env',
{
targets: {
node: 'current',
},
modules: 'commonjs',
useBuiltIns: 'usage',
corejs: 3,
},
]);

plugins.push([
'babel-plugin-module-resolver',
{
root: ['./build/js/src'],
alias: {
'@gdbots/acme-schemas': './build/js/src',
},
},
]);
break;

case 'build':
default:
presets.push([
Expand All @@ -37,17 +13,10 @@ switch (env) {
node: 'current',
},
modules: false,
useBuiltIns: 'usage',
corejs: 3,
},
]);

plugins.push('lodash');
plugins.push('./build/js/use-lodash-es');
break;
}

module.exports = {
presets,
plugins,
};
export default { presets, plugins };
22 changes: 11 additions & 11 deletions build/js/src/acme/forms/command/SendSubmissionV1.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/forms/command/send-submission/1-0-0.json#
import DayOfWeek from '@gdbots/schemas/gdbots/common/enums/DayOfWeek';
import Fb from '@gdbots/pbj/FieldBuilder';
import FileId from '@gdbots/schemas/gdbots/common/FileId';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin';
import Gender from '@gdbots/schemas/gdbots/common/enums/Gender';
import Message from '@gdbots/pbj/Message';
import Month from '@gdbots/schemas/gdbots/common/enums/Month';
import Schema from '@gdbots/pbj/Schema';
import SexualOrientation from '@gdbots/schemas/gdbots/common/enums/SexualOrientation';
import T from '@gdbots/pbj/types';
import DayOfWeek from '@gdbots/schemas/gdbots/common/enums/DayOfWeek.js';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import FileId from '@gdbots/schemas/gdbots/common/FileId.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin.js';
import Gender from '@gdbots/schemas/gdbots/common/enums/Gender.js';
import Message from '@gdbots/pbj/Message.js';
import Month from '@gdbots/schemas/gdbots/common/enums/Month.js';
import Schema from '@gdbots/pbj/Schema.js';
import SexualOrientation from '@gdbots/schemas/gdbots/common/enums/SexualOrientation.js';
import T from '@gdbots/pbj/types/index.js';

export default class SendSubmissionV1 extends Message {
/**
Expand Down
22 changes: 11 additions & 11 deletions build/js/src/acme/forms/event/SubmissionReceivedV1.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/forms/event/submission-received/1-0-0.json#
import DayOfWeek from '@gdbots/schemas/gdbots/common/enums/DayOfWeek';
import Fb from '@gdbots/pbj/FieldBuilder';
import FileId from '@gdbots/schemas/gdbots/common/FileId';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxEventV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/event/EventV1Mixin';
import Gender from '@gdbots/schemas/gdbots/common/enums/Gender';
import Message from '@gdbots/pbj/Message';
import Month from '@gdbots/schemas/gdbots/common/enums/Month';
import Schema from '@gdbots/pbj/Schema';
import SexualOrientation from '@gdbots/schemas/gdbots/common/enums/SexualOrientation';
import T from '@gdbots/pbj/types';
import DayOfWeek from '@gdbots/schemas/gdbots/common/enums/DayOfWeek.js';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import FileId from '@gdbots/schemas/gdbots/common/FileId.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxEventV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/event/EventV1Mixin.js';
import Gender from '@gdbots/schemas/gdbots/common/enums/Gender.js';
import Message from '@gdbots/pbj/Message.js';
import Month from '@gdbots/schemas/gdbots/common/enums/Month.js';
import Schema from '@gdbots/pbj/Schema.js';
import SexualOrientation from '@gdbots/schemas/gdbots/common/enums/SexualOrientation.js';
import T from '@gdbots/pbj/types/index.js';

export default class SubmissionReceivedV1 extends Message {
/**
Expand Down
20 changes: 10 additions & 10 deletions build/js/src/acme/forms/node/FormV1.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/forms/node/form/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import FileId from '@gdbots/schemas/gdbots/common/FileId';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import PiiImpact from '@gdbots/schemas/gdbots/forms/enums/PiiImpact';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import FileId from '@gdbots/schemas/gdbots/common/FileId.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import PiiImpact from '@gdbots/schemas/gdbots/forms/enums/PiiImpact.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class FormV1 extends Message {
/**
Expand Down
16 changes: 8 additions & 8 deletions build/js/src/acme/forms/request/SearchFormsRequestV1.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/forms/request/search-forms-request/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxRequestV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/request/RequestV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import SearchFormsSort from '@gdbots/schemas/gdbots/forms/enums/SearchFormsSort';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxRequestV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/request/RequestV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import SearchFormsSort from '@gdbots/schemas/gdbots/forms/enums/SearchFormsSort.js';
import T from '@gdbots/pbj/types/index.js';

export default class SearchFormsRequestV1 extends Message {
/**
Expand Down
10 changes: 5 additions & 5 deletions build/js/src/acme/forms/request/SearchFormsResponseV1.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/forms/request/search-forms-response/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import GdbotsPbjxResponseV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/response/ResponseV1Mixin';
import Message from '@gdbots/pbj/Message';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import GdbotsPbjxResponseV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/response/ResponseV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';

export default class SearchFormsResponseV1 extends Message {
/**
Expand Down
12 changes: 6 additions & 6 deletions build/js/src/acme/iam/command/PatchUserV1.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/command/patch-user/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin';
import Message from '@gdbots/pbj/Message';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';

export default class PatchUserV1 extends Message {
/**
Expand Down
12 changes: 6 additions & 6 deletions build/js/src/acme/iam/command/PatchUsersV1.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/command/patch-users/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin';
import Message from '@gdbots/pbj/Message';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxCommandV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/command/CommandV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';

export default class PatchUsersV1 extends Message {
/**
Expand Down
12 changes: 6 additions & 6 deletions build/js/src/acme/iam/event/UserPatchedV1.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/event/user-patched/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsPbjxEventV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/event/EventV1Mixin';
import Message from '@gdbots/pbj/Message';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsPbjxEventV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/event/EventV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';

export default class UserPatchedV1 extends Message {
/**
Expand Down
16 changes: 8 additions & 8 deletions build/js/src/acme/iam/node/AlexaAppV1.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/alexa-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import GdbotsIamAlexaAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/alexa-app/AlexaAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import GdbotsIamAlexaAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/alexa-app/AlexaAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class AlexaAppV1 extends Message {
/**
Expand Down
18 changes: 9 additions & 9 deletions build/js/src/acme/iam/node/AndroidAppV1.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/android-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsIamAndroidAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/android-app/AndroidAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsIamAndroidAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/android-app/AndroidAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class AndroidAppV1 extends Message {
/**
Expand Down
16 changes: 8 additions & 8 deletions build/js/src/acme/iam/node/AppleNewsAppV1.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/apple-news-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import GdbotsIamAppleNewsAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/apple-news-app/AppleNewsAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import GdbotsIamAppleNewsAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/apple-news-app/AppleNewsAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class AppleNewsAppV1 extends Message {
/**
Expand Down
18 changes: 9 additions & 9 deletions build/js/src/acme/iam/node/BrowserAppV1.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/browser-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsIamBrowserAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/browser-app/BrowserAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsIamBrowserAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/browser-app/BrowserAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class BrowserAppV1 extends Message {
/**
Expand Down
16 changes: 8 additions & 8 deletions build/js/src/acme/iam/node/EmailAppV1.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/email-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import GdbotsIamEmailAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/email-app/EmailAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import GdbotsIamEmailAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/email-app/EmailAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class EmailAppV1 extends Message {
/**
Expand Down
18 changes: 9 additions & 9 deletions build/js/src/acme/iam/node/IosAppV1.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/ios-app/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import Format from '@gdbots/pbj/enums/Format';
import GdbotsIamIosAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/ios-app/IosAppV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import Format from '@gdbots/pbj/enums/Format.js';
import GdbotsIamIosAppV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/ios-app/IosAppV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';
import UuidIdentifier from '@gdbots/pbj/well-known/UuidIdentifier.js';

export default class IosAppV1 extends Message {
/**
Expand Down
16 changes: 8 additions & 8 deletions build/js/src/acme/iam/node/RoleV1.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// @link http://acme-schemas.gdbots.io/json-schema/acme/iam/node/role/1-0-0.json#
import Fb from '@gdbots/pbj/FieldBuilder';
import GdbotsIamRoleV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/role/RoleV1Mixin';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin';
import Message from '@gdbots/pbj/Message';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus';
import RoleId from '@gdbots/schemas/gdbots/iam/RoleId';
import Schema from '@gdbots/pbj/Schema';
import T from '@gdbots/pbj/types';
import Fb from '@gdbots/pbj/FieldBuilder.js';
import GdbotsIamRoleV1Mixin from '@gdbots/schemas/gdbots/iam/mixin/role/RoleV1Mixin.js';
import GdbotsNcrNodeV1Mixin from '@gdbots/schemas/gdbots/ncr/mixin/node/NodeV1Mixin.js';
import Message from '@gdbots/pbj/Message.js';
import NodeStatus from '@gdbots/schemas/gdbots/ncr/enums/NodeStatus.js';
import RoleId from '@gdbots/schemas/gdbots/iam/RoleId.js';
import Schema from '@gdbots/pbj/Schema.js';
import T from '@gdbots/pbj/types/index.js';

export default class RoleV1 extends Message {
/**
Expand Down
Loading

0 comments on commit 4549074

Please sign in to comment.